projects
/
mw
/
milkymist.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Use LLVM wherever possible instead of the GNU Crap Collection
[mw/milkymist.git]
/
tools
/
Makefile
1
TARGETS=bin2hex crc32 flterm makeraw
2
3
all: $(TARGETS)
4
5
%: %.c
6
clang -O2 -Wall -I. -s -o $@ $<
7
8
makeraw: makeraw.c
9
clang -O2 -Wall -s -o $@ $< -lgd
10
11
.PHONY: clean
12
13
clean:
14
rm -f $(TARGETS) *.o