summaryrefslogtreecommitdiffstatshomepage
path: root/makefile
diff options
context:
space:
mode:
authorGravatar Antti K2014-07-30 00:36:44 +0200
committerGravatar Antti K2014-07-30 01:11:09 +0200
commitefa9036180df32ad26093fa333c8bdf3baf8ab1a (patch)
tree067bdbe0a5f5ca70f201a1c071721c715b902fde /makefile
parentff317aee140197e7c52f2f3f4db154d715503d19 (diff)
downloadxkbcat-efa9036180df32ad26093fa333c8bdf3baf8ab1a.tar.gz
xkbcat-efa9036180df32ad26093fa333c8bdf3baf8ab1a.zip
Convert `compile` script to makefile
More standard this way.
Diffstat (limited to 'makefile')
-rw-r--r--makefile7
1 files changed, 7 insertions, 0 deletions
diff --git a/makefile b/makefile
new file mode 100644
index 0000000..765f99e
--- /dev/null
+++ b/makefile
@@ -0,0 +1,7 @@
+xkbcat: xkbcat.c
+ clang -O3 --std=gnu11 -pedantic -Wall -lX11 -o xkbcat xkbcat.c
+clean:
+ rm xkbcat
+.PHONY: xkbcat
+
+