diff options
author | Mattias Andrée <maandree@kth.se> | 2018-01-18 22:37:57 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2018-01-18 22:37:57 +0100 |
commit | 49ce929095e6f979a40593683db94ef0d404c6a1 (patch) | |
tree | a3c07d460de618c086871b446ccc4cabe93b1671 /Makefile | |
download | xkbdbind-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-- | Makefile | 17 |
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 |