File: test_12

package info (click to toggle)
aspectc%2B%2B 0.99%2B1.0pre3-2
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 66,496 kB
  • ctags: 243,496
  • sloc: cpp: 1,226,050; ansic: 14,778; sh: 1,963; makefile: 741
file content (12 lines) | stat: -rw-r--r-- 274 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
DESC="include paths from original location "
main(){
	mkdir src/bin
	if  ( ${AGCC} -p src -v1 -o src/bin/test src/*.cc );then true;
	else
		ERR_MSG="Execution failed '${AGCC} -p src -v1 -o src/bin/test src/*.cc'";
		return 0;
	fi;
	
	rm -rf puma.config src/bin
	return 1;
}