diff options
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 |