diff --git a/Makefile b/Makefile deleted file mode 100644 index a4ce41ad962bc12254a58cf82e7a3ecf6dcd4b4c..0000000000000000000000000000000000000000 --- a/Makefile +++ /dev/null @@ -1,19 +0,0 @@ -all : projet_3 - -projet_3 : projet_3.o test.o - gcc -o projet_3 projet_3.o test.o - - -projet_3.o : projet_3.c - gcc -o projet_3.o -c projet_3.c -W -Wall - - -test.o : test.c projet_3.h - gcc -o test.o -c test.c -W -Wall - - -clean : - rm -rf *.o - -mrproper: clean - rm -rf hello