From f64ab5a072122cd0d1c01eb28091e49b26dbfdbf Mon Sep 17 00:00:00 2001 From: Antti Korpi Date: Mon, 13 Jan 2020 14:59:05 +0100 Subject: Use $(CC) in makefile, over hardcoding compiler Who knows what C compiler users like to use. This should cause the right one to be chosen automatically. --- makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'makefile') diff --git a/makefile b/makefile index fbbde43..f9166ab 100644 --- a/makefile +++ b/makefile @@ -1,4 +1,4 @@ xkbcat: xkbcat.c - clang -O3 --std=c99 -pedantic -Wall -lX11 -lXi -o xkbcat xkbcat.c + $(CC) -O3 --std=c99 -pedantic -Wall -lX11 -lXi -o xkbcat xkbcat.c clean: rm --force xkbcat -- cgit v1.3-2-g0d8e