projects
/
mw
/
milkymist.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
Use LLVM wherever possible instead of the GNU Crap Collection
[mw/milkymist.git]
/
tools
/
Makefile
diff --git
a/tools/Makefile
b/tools/Makefile
index
a695aef
..
1981fe3
100644
(file)
--- a/
tools/Makefile
+++ b/
tools/Makefile
@@
-3,10
+3,10
@@
TARGETS=bin2hex crc32 flterm makeraw
all: $(TARGETS)
%: %.c
-
gcc
-O2 -Wall -I. -s -o $@ $<
+
clang
-O2 -Wall -I. -s -o $@ $<
makeraw: makeraw.c
-
gcc
-O2 -Wall -s -o $@ $< -lgd
+
clang
-O2 -Wall -s -o $@ $< -lgd
.PHONY: clean