
all:
	gcc -Wall -ansi -pedantic -O3 -o naweb -I'/usr/include/libpng' -lpng cle.c ../../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/nthreads.c ../../noble/parse.c ../../noble/interpret.c ../../noble/compress.c web.c
 
debug:
	gcc -Wall -ansi -pedantic -g -o naweb -I'/usr/include/libpng' -lpng cle.c ../../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/nthreads.c ../../noble/parse.c ../../noble/interpret.c ../../noble/compress.c web.c

clean:
	rm -f naweb




