
all:
	gcc -Wall -ansi -pedantic -O3 -o naweb cle.c pnglite.c -lz ../../universe/sim.c ../../universe/being.c ../../universe/genealogy.c ../../universe/brain.c ../../universe/land.c ../../universe/social.c ../../noble/math.c ../../noble/io.c ../../noble/parse.c ../../noble/interpret.c web.c -lm
 
debug:
	gcc -Wall -ansi -pedantic -g -o naweb cle.c pnglite.c -lz -lm ../../universe/sim.c ../../universe/being.c ../../universe/genealogy.c ../../universe/brain.c ../../universe/land.c ../../universe/social.c ../../noble/math.c ../../noble/io.c ../../noble/parse.c ../../noble/interpret.c web.c -lm

clean:
	rm -f naweb




