From: Florian Forster Date: Fri, 25 Apr 2008 09:08:12 +0000 (+0200) Subject: Makefile: Added the new modules and updated existing ones. X-Git-Tag: v1.0.0~111 X-Git-Url: https://git.octo.it/?a=commitdiff_plain;h=46a645f7e7da30581d97f69c02e3cb5c5adcd716;p=sort-networks.git Makefile: Added the new modules and updated existing ones. --- diff --git a/src/Makefile b/src/Makefile index 58ed924..400a2fc 100644 --- a/src/Makefile +++ b/src/Makefile @@ -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