I've been using SCons in Cygwin for all of my simple glut programs (mostly for
519 things), and look how simple the SConstruct (sort of like a makefile) is:
Default('.')
env = Environment(LIBS=['glut32', 'opengl32'])
env.Program(
target = 'breakout',
source = 'breakout.cpp game_state.cpp null_state.cpp')
It does automatic dependency analysis and stuff. That's cool. :D
http://www.scons.org
|