diff options
author | awy <awy@tutamail.com> | 2024-08-25 16:13:26 +0300 |
---|---|---|
committer | awy <awy@tutamail.com> | 2024-08-25 16:13:26 +0300 |
commit | 5f9b454cda0ad1ab9bf689f487c5386cd05737e5 (patch) | |
tree | e77b1caa41b60db1cc0b6442bcfb16dbe1b85282 /config.mk |
upload
Diffstat (limited to 'config.mk')
-rw-r--r-- | config.mk | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/config.mk b/config.mk new file mode 100644 index 0000000..1e0b810 --- /dev/null +++ b/config.mk @@ -0,0 +1,17 @@ +_VERSION = 0.7 +VERSION = `git describe --tags --dirty 2>/dev/null || echo $(_VERSION)` + +PKG_CONFIG = pkg-config + +# paths +PREFIX = /usr/local +MANDIR = $(PREFIX)/share/man +DATADIR = $(PREFIX)/share + +XWAYLAND = +XLIBS = +# Uncomment to build XWayland support +#XWAYLAND = -DXWAYLAND +#XLIBS = xcb xcb-icccm + +CC = gcc |