summaryrefslogtreecommitdiff
path: root/tools/easylogo/Makefile
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2007-12-18 03:23:25 -0500
committerWolfgang Denk <wd@denx.de>2008-01-09 15:09:05 +0100
commit38d299c2db81bd889c601b5dfc12c4e83ef83333 (patch)
treebabf47533206e2864572331233543a1f498defe5 /tools/easylogo/Makefile
parent883e3925d99a8dd69c5b0201cba5b1887f88f95c (diff)
cleanup easylogo
- make the Makefile not suck - include proper headers for prototypes - fix obvious broken handling of strchr() when handling '.' in filenames Signed-Off-By: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'tools/easylogo/Makefile')
-rw-r--r--tools/easylogo/Makefile10
1 files changed, 8 insertions, 2 deletions
diff --git a/tools/easylogo/Makefile b/tools/easylogo/Makefile
index 292344ad0..566b12506 100644
--- a/tools/easylogo/Makefile
+++ b/tools/easylogo/Makefile
@@ -1,2 +1,8 @@
-all: easylogo.c
- gcc easylogo.c -o easylogo
+CFLAGS += -Wall
+
+all: easylogo
+
+clean:
+ rm -f easylogo *.o
+
+.PHONY: all clean