From: Christian Heller <c.heller@plomlompom.de>
Date: Wed, 19 Jun 2013 02:56:47 +0000 (+0200)
Subject: Declare "clean" a phony target.
X-Git-Tag: tce~1214
X-Git-Url: https://plomlompom.com/repos/%7B%7Bprefix%7D%7D/%7B%7B%20web_path%20%7D%7D/static/%7B%7Bdb.prefix%7D%7D/test?a=commitdiff_plain;h=fb2c9683f4b3bd48226ea45222185f99812744ff;p=plomrogue

Declare "clean" a phony target.
---

diff --git a/Makefile b/Makefile
index 2107e08..3c25ff9 100644
--- a/Makefile
+++ b/Makefile
@@ -9,5 +9,6 @@ roguelike: $(OBJECTS)
 %.o: %.c
 	$(CC) $(CFLAGS) -c $< -o $@
 
+.PHONY: clean
 clean:
 	rm $(OBJECTS); rm roguelike