diff options
author | Wolfgang Denk <wd@denx.de> | 2008-01-09 21:34:46 +0100 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2008-01-09 21:34:46 +0100 |
commit | 3b93020d74630f0574cbd26d200a82c00dd11eaa (patch) | |
tree | fdf53ce4da01d337ceb71cadf496a9fc8d2fb62c /tools/easylogo/Makefile | |
parent | c83d7ca4dadd44ae430235077f63b64a11f36f6e (diff) | |
parent | 6007f3251c0967adc13f2ed8be1b924ddc30124d (diff) |
Merge branch 'master' of /home/wd/git/u-boot/master/
Diffstat (limited to 'tools/easylogo/Makefile')
-rw-r--r-- | tools/easylogo/Makefile | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/tools/easylogo/Makefile b/tools/easylogo/Makefile index 292344ad03..566b12506b 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 |