From 49ce929095e6f979a40593683db94ef0d404c6a1 Mon Sep 17 00:00:00 2001 From: Mattias Andrée Date: Thu, 18 Jan 2018 22:37:57 +0100 Subject: First commit MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Mattias Andrée --- Makefile | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 Makefile (limited to 'Makefile') 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 -- cgit v1.2.3-70-g09d2