aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2018-01-18 22:37:57 +0100
committerMattias Andrée <maandree@kth.se>2018-01-18 22:37:57 +0100
commit49ce929095e6f979a40593683db94ef0d404c6a1 (patch)
treea3c07d460de618c086871b446ccc4cabe93b1671 /Makefile
downloadxkbdbind-49ce929095e6f979a40593683db94ef0d404c6a1.tar.gz
xkbdbind-49ce929095e6f979a40593683db94ef0d404c6a1.tar.bz2
xkbdbind-49ce929095e6f979a40593683db94ef0d404c6a1.tar.xz
First commit
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile17
1 files changed, 17 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..6eb1f43
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,17 @@
+.POSIX:
+
+CPPFLAGS = -D_DEFAULT_SOURCE -D_BSD_SOURCE -D_XOPEN_SOURCE=700
+CFLAGS = -std=c99 -Wall -Wextra -pedantic -O2 $(CPPFLAGS)
+LDFLAGS = -s -lxcb -lxcb-keysyms
+
+all: xkbdbind
+
+xkbdbind: xkbdbind.c config.h
+ $(CC) -o $@ $@.c $(CFLAGS) $(LDFLAGS)
+
+clean:
+ -rm -f -- xkbdbind *.o
+
+.SUFFIXES:
+
+.PHONY: all clean