From 73636823a645be8fa0ada24f053c86ba76196ad7 Mon Sep 17 00:00:00 2001 From: orange Date: Wed, 2 Oct 2013 17:43:43 +0200 Subject: [PATCH] remove object files on clean --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index af47822..33816de 100644 --- a/Makefile +++ b/Makefile @@ -9,7 +9,7 @@ all: $(TARGETS) $(EXTRAS) .PHONY: clean clean: - rm -f $(TARGETS) $(EXTRAS) *~ + rm -f $(TARGETS) $(EXTRAS) *.o *~ mandelbrot: mandelbrot.c $(CC) $(CFLAGS) $(shell sdl-config --cflags) -o $@ $< $(shell sdl-config --libs) -lm