From 9316d807e71d3f83c53d87de287ed285903c0996 Mon Sep 17 00:00:00 2001 From: Tony Garnock-Jones Date: Tue, 30 Jun 2015 19:24:26 -0400 Subject: [PATCH] Use $(CC) instead of gcc in makefile --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index c8b58ba..a0d7846 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ all: t t: *.c - gcc -Wall -Os -o $@ -g *.c + $(CC) -Wall -Os -o $@ -g *.c clean: rm -f t