garten
diff 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 |
line diff
1.1 --- a/Makefile Wed May 14 21:10:45 2008 +0200 1.2 +++ b/Makefile Wed May 14 21:59:35 2008 +0200 1.3 @@ -46,8 +46,11 @@ 1.4 bin/weather: weather.c db.h game.h 1.5 $(CC) -o $@ $(LDFLAGS) `mysql_config --cflags` weather.c `mysql_config --libs` 1.6 1.7 +bin/environment: environment.c db.h game.h 1.8 + $(CC) -o $@ $(LDFLAGS) `mysql_config --cflags` environment.c `mysql_config --libs` 1.9 1.10 -${NAME}: bin/clock bin/weather 1.11 + 1.12 +${NAME}: bin/clock bin/weather bin/environment 1.13 1.14 1.15 #${OBJ}: ${DEP}