scons: Build progs together with everything else.

This is a substantial reorganization, This particular commit enables:
- building the progs for unices platforms
- glew is now built as a shared library (it is the default, and it is
inconvenient and pointless to shift away from that default)
- all progs get built by default
This commit is contained in:
José Fonseca
2009-12-31 21:10:25 +00:00
parent 58b401315b
commit 7bbf7f94ea
17 changed files with 180 additions and 314 deletions
+2 -9
View File
@@ -1,11 +1,4 @@
Import('env')
if not env['GLUT']:
Return()
env = env.Clone()
env.Prepend(LIBS = ['$GLUT_LIB'])
Import('*')
progs = [
'copytex',
@@ -21,7 +14,7 @@ progs = [
]
for prog in progs:
env.Program(
progs_env.Program(
target = prog,
source = [
prog + '.c',