Use $(CC) instead of gcc in makefile

This commit is contained in:
Tony Garnock-Jones 2015-06-30 19:24:26 -04:00
parent 316edeb8e2
commit 9316d807e7
1 changed files with 1 additions and 1 deletions

View File

@ -1,7 +1,7 @@
all: t
t: *.c
gcc -Wall -Os -o $@ -g *.c
$(CC) -Wall -Os -o $@ -g *.c
clean:
rm -f t