Makefile: Added the new modules and updated existing ones.
authorFlorian Forster <octo@leeloo.home.verplant.org>
Fri, 25 Apr 2008 09:08:12 +0000 (11:08 +0200)
committerFlorian Forster <octo@leeloo.home.verplant.org>
Fri, 25 Apr 2008 09:08:12 +0000 (11:08 +0200)
src/Makefile

index 58ed924..400a2fc 100644 (file)
@@ -1,6 +1,6 @@
 CC = gcc
-CFLAGS = -Wall -Werror -std=c99 -O3
-#CFLAGS = -Wall -Werror -std=c99 -O0 -g
+#CFLAGS = -Wall -Werror -std=c99 -O3
+CFLAGS = -Wall -Werror -std=c99 -O0 -g
 
 all: sn-cut sn-evolution sn-merge sn-show
 
@@ -10,13 +10,18 @@ clean:
 
 sn_comparator.o: sn_comparator.c sn_comparator.h
 
+sn_network.o: sn_network.c sn_network.h sn_stage.h sn_comparator.h
+
+sn_population.o: sn_population.c sn_population.h sn_network.h sn_random.h
+
+sn_random.o: sn_random.c sn_random.h
+
 sn_stage.o: sn_stage.c sn_stage.h sn_comparator.h
 
-sn_network.o: sn_network.c sn_network.h sn_stage.h sn_comparator.h
 
 sn-cut: sn-cut.c sn_network.o sn_stage.o sn_comparator.o
 
-sn-evolution: sn-evolution.c sn_network.o sn_stage.o sn_comparator.o
+sn-evolution: sn-evolution.c sn_network.o sn_stage.o sn_comparator.o sn_population.o sn_random.o
 
 sn-merge: sn-merge.c sn_network.o sn_stage.o sn_comparator.o