diff --git a/Makefile.jpg b/Makefile.jpg
deleted file mode 100644
index 703fde732099c256bbb6cc3cc84e6e4606b41ef4..0000000000000000000000000000000000000000
--- a/Makefile.jpg
+++ /dev/null
@@ -1,22 +0,0 @@
-all : projet_3
-
-projet_3 : projet_3.o test_projet_3.o
-			gcc -o projet_3 projet_3.o test_projet_3.o -I${HOME}/local/include -lcunit -L${HOME}/local/lib
-
-
-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 -I${HOME}/local/include -W -Wall -lcunit
-
-
-clean :
-	rm -rf *.o 
-
-mrproper: clean
-	rm -rf projet_3
-
-prog : projet_3
-		./projet_3