summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index ce298f8..2714366 100644
--- a/Makefile
+++ b/Makefile
@@ -1,15 +1,15 @@
+all : exe_ll exe_bs exe_tr
-exe_ll : mainc.c sets.h set_linked_lists.c
+exe_ll : main.c sets.h set_linked_lists.c
gcc -o exe_ll main.c set_linked_lists.c -DLINKEDLISTS
-exe_bs : mainc.c sets.h set_bitsets.c
+exe_bs : main.c sets.h set_bitsets.c
gcc -o exe_bs main.c set_bitsets.c -DBITSETS
-exe_tr : mainc.c sets.h set_treaps.c
+exe_tr : main.c sets.h set_treaps.c
gcc -o exe_tr main.c set_treaps.c -DTREAPS
-all : exe_ll exe_bs exe_tr
clean :
rm exe_ll exe_tr exe_bs