all: test affiche.o: affiche.c cc -c affiche.c malloc.o: malloc.c cc -c malloc.c malloc-debug.o: malloc-debug.c cc -c malloc-debug.c test: test.c malloc.o malloc-debug.o affiche.o cc malloc.o malloc-debug.o affiche.o test.c -o test clean: rm -f *.o test