summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorAlex AUVOLAT <alex.auvolat@ens.fr>2013-11-18 16:02:59 +0100
committerAlex AUVOLAT <alex.auvolat@ens.fr>2013-11-18 16:02:59 +0100
commit9905bcc6c923ac896f6bddf80eaded250870b726 (patch)
treeb1d9967920b7299a3b30ef4b9d3e19d5c5428231 /Makefile
parentaba69b8e46b8b1f87bc667b62ae1f60ef42963ab (diff)
downloadAlgoProg-Projet-9905bcc6c923ac896f6bddf80eaded250870b726.tar.gz
AlgoProg-Projet-9905bcc6c923ac896f6bddf80eaded250870b726.zip
Changed a few files so that it will compile.
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