summaryrefslogtreecommitdiffstatshomepage
path: root/makefile
diff options
context:
space:
mode:
authorGravatar Antti Korpi2016-04-22 03:01:46 +0100
committerGravatar Antti Korpi2016-04-22 03:02:15 +0100
commit7d78738e04df5af72cc15136fc550de0989ede30 (patch)
tree6cd732c5d46b7bec718088bb7d1c628352b4e888 /makefile
parent5b7fd9741183a3d6abeb48b58be0112e86bb8abf (diff)
downloadxkbcat-7d78738e04df5af72cc15136fc550de0989ede30.tar.gz
xkbcat-7d78738e04df5af72cc15136fc550de0989ede30.zip
Compile to C99 instead of GNU11
Simpler, now that we don't need the time structs anymore.
Diffstat (limited to 'makefile')
-rw-r--r--makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/makefile b/makefile
index b8341c4..99b84d8 100644
--- a/makefile
+++ b/makefile
@@ -1,5 +1,5 @@
xkbcat: xkbcat.c
- clang -O3 --std=gnu11 -pedantic -Wall -lX11 -lXi -o xkbcat xkbcat.c
+ clang -O3 --std=c99 -pedantic -Wall -lX11 -lXi -o xkbcat xkbcat.c
clean:
rm xkbcat
.PHONY: xkbcat