summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index b81992e..d61ac57 100644
--- a/Makefile
+++ b/Makefile
@@ -4,13 +4,13 @@ COMMON_H=graph.h sets.h algos.h
all : exe_ll exe_bs exe_tr exe_ll_test
exe_ll : set_linked_lists.c $(COMMON_C) $(COMMON_H)
- gcc -o exe_ll set_linked_lists.c $(COMMON_C) -DLINKEDLISTS -g -O2
+ gcc -o exe_ll set_linked_lists.c $(COMMON_C) -DLINKEDLISTS -g -O3
exe_ll_test : set_test.c sets.h set_linked_lists.c sets.c
gcc -o exe_ll_test set_test.c set_linked_lists.c sets.c -DLINKEDLISTS -g
exe_bs : set_bitsets.c $(COMMON_C) $(COMMON_H)
- gcc -o exe_bs set_bitsets.c $(COMMON_C) -DBITSETS -g
+ gcc -o exe_bs set_bitsets.c $(COMMON_C) -DBITSETS -g -O3
exe_bs_test : set_test.c sets.h set_bitsets.c sets.c
gcc -o exe_ll_test set_test.c set_bitsets.c sets.c graphc. -DBITSETS -g