summaryrefslogtreecommitdiffstatshomepage
path: root/makefile
diff options
context:
space:
mode:
authorGravatar Antti Korpi2020-01-13 14:59:05 +0100
committerGravatar Antti Korpi2020-01-13 14:59:05 +0100
commitf64ab5a072122cd0d1c01eb28091e49b26dbfdbf (patch)
tree6c37008d4c4ef284bcdc66f30f892832ac8e85a3 /makefile
parent6021c4be7d928157b93ff3d5705ff98cc558e8da (diff)
downloadxkbcat-f64ab5a072122cd0d1c01eb28091e49b26dbfdbf.tar.gz
xkbcat-f64ab5a072122cd0d1c01eb28091e49b26dbfdbf.zip
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.
Diffstat (limited to 'makefile')
-rw-r--r--makefile2
1 files changed, 1 insertions, 1 deletions
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