dwl/config.mk

21 lines
517 B
Makefile
Raw Normal View History

2024-07-15 03:34:28 +00:00
_VERSION = 0.8-dev
VERSION = `git describe --tags --dirty 2>/dev/null || echo $(_VERSION)`
2022-05-09 19:52:03 +00:00
PKG_CONFIG = pkg-config
# paths
PREFIX = /usr/local
MANDIR = $(PREFIX)/share/man
DATADIR = $(PREFIX)/share
2022-05-25 22:04:19 +00:00
XWAYLAND =
XLIBS =
2020-08-10 17:50:56 +00:00
# Uncomment to build XWayland support
2022-05-25 22:04:19 +00:00
#XWAYLAND = -DXWAYLAND
#XLIBS = xcb xcb-icccm
# dwl itself only uses C99 features, but wlroots' headers use anonymous unions (C11).
# To avoid warnings about them, we do not use -std=c99 and instead of using the
# gmake default 'CC=c99', we use cc.
CC = cc