diff options
author | Mattias Andrée <maandree@kth.se> | 2023-07-02 09:09:58 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2023-07-02 09:09:58 +0200 |
commit | 2ab5473fc48d91ecce1f11c49e5decdcf821e3d4 (patch) | |
tree | 990bb8866d207f8ba7626e7574a323fbadf9c6d0 /config.mk | |
parent | Add documentation to config.h (diff) | |
download | xkbdbind-1.2.tar.gz xkbdbind-1.2.tar.bz2 xkbdbind-1.2.tar.xz |
Improve makefile and add man page1.2
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'config.mk')
-rw-r--r-- | config.mk | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/config.mk b/config.mk new file mode 100644 index 0000000..e8e1344 --- /dev/null +++ b/config.mk @@ -0,0 +1,10 @@ +PREFIX = /usr +MANPREFIX = $(PREFIX)/share/man + +PACKAGE = xkbdbind + +CC = c99 + +CPPFLAGS = -D_DEFAULT_SOURCE -D_BSD_SOURCE -D_XOPEN_SOURCE=700 +CFLAGS = -Wall -O2 $(CPPFLAGS) +LDFLAGS = -lxcb -lxcb-keysyms |