comparison Makefile @ 7:b1e309dc0b98

added growth module (quite static and limited implementation)
author meillo@marmaro.de
date Thu, 15 May 2008 21:42:01 +0200
parents e3679f888813
children 13c6828bd4a5
comparison
equal deleted inserted replaced
6:e3679f888813 7:b1e309dc0b98
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 49 bin/environment: environment.c db.h game.h
50 $(CC) -o $@ $(LDFLAGS) `mysql_config --cflags` environment.c `mysql_config --libs` 50 $(CC) -o $@ $(LDFLAGS) `mysql_config --cflags` environment.c `mysql_config --libs`
51 51
52 bin/growth: growth.c db.h game.h
53 $(CC) -o $@ $(LDFLAGS) `mysql_config --cflags` growth.c `mysql_config --libs`
52 54
53 ${NAME}: bin/clock bin/weather bin/environment 55
56 ${NAME}: bin/clock bin/weather bin/environment bin/growth
54 57
55 58
56 #${OBJ}: ${DEP} 59 #${OBJ}: ${DEP}
57 60
58 61