commit 521dc0c9100cd167be8525ca00ccaed4e0d7fa33
parent c8c0993707b0780cb362892b2f78decaabce5f72
Author: Mattias Andrée <maandree@kth.se>
Date: Thu, 12 Jan 2017 02:58:52 +0100
Makefile: clean: do not list .o files explicitly
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile b/Makefile
@@ -37,7 +37,7 @@ all: $(BIN)
$(CC) $(CFLAGS) $(CPPFLAGS) -c -o $@ $<
clean:
- -rm $(BIN) $(BIN:=.o) util.o stream.o
+ -rm $(BIN) *.o
.PHONY: all clean
.PRECIOUS: util.o stream.o