File: SConstruct

package info (click to toggle)
enemylines3 1.2-3
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 1,380 kB
  • ctags: 1,444
  • sloc: cpp: 16,323; makefile: 74; sh: 52
file content (19 lines) | stat: -rw-r--r-- 270 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
list=[
	"energy.cc",
	"interval.cc",
	"supercharge.cc",
	"score.cc",
	"level.cc",
	"goal_keys.cc",
	"goal_kills.cc",
	"goal_survive.cc",
	"timeleft.cc"
];

Import('env')
obj = env.Object(
	list,
   CPPFLAGS="-I./ -I../",
   CCFLAGS="-I./ -I../ -g -Wall"
)
Return('obj')