comparison Makefile @ 6:e3679f888813

added environment module (only static code)
author meillo@marmaro.de
date Wed, 14 May 2008 21:59:35 +0200
parents 26ca6c79fc22
children b1e309dc0b98
comparison
equal deleted inserted replaced
5:26ca6c79fc22 6:e3679f888813
44 $(CC) -o $@ $(LDFLAGS) `mysql_config --cflags` clock.c `mysql_config --libs` 44 $(CC) -o $@ $(LDFLAGS) `mysql_config --cflags` clock.c `mysql_config --libs`
45 45
46 bin/weather: weather.c db.h game.h 46 bin/weather: weather.c db.h game.h
47 $(CC) -o $@ $(LDFLAGS) `mysql_config --cflags` weather.c `mysql_config --libs` 47 $(CC) -o $@ $(LDFLAGS) `mysql_config --cflags` weather.c `mysql_config --libs`
48 48
49 bin/environment: environment.c db.h game.h
50 $(CC) -o $@ $(LDFLAGS) `mysql_config --cflags` environment.c `mysql_config --libs`
49 51
50 ${NAME}: bin/clock bin/weather 52
53 ${NAME}: bin/clock bin/weather bin/environment
51 54
52 55
53 #${OBJ}: ${DEP} 56 #${OBJ}: ${DEP}
54 57
55 58