Skip to content

Commit b5cbe7a

Browse files
author
Sebastien Bourdeauducq
committedNov 13, 2011
tools: use the CC variable
1 parent 4691fe6 commit b5cbe7a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

Diff for: ‎tools/Makefile

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
TARGETS=bin2hex mkmmimg flterm makeraw byteswap
2-
COMPILER?=clang
2+
CC=clang
33

44
all: $(TARGETS)
55

66
%: %.c
7-
$(COMPILER) -O2 -Wall -I. -s -o $@ $<
7+
$(CC) -O2 -Wall -I. -s -o $@ $<
88

99
makeraw: makeraw.c
10-
$(COMPILER) -O2 -Wall -s -o $@ $< -lgd
10+
$(CC) -O2 -Wall -s -o $@ $< -lgd
1111

1212
install: mkmmimg flterm
1313
cp mkmmimg /usr/bin

0 commit comments

Comments
 (0)
Please sign in to comment.