dwl/config.mk

21 lines
517 B
Makefile
Raw Normal View History

2024-07-14 20:34:28 -07:00
_VERSION = 0.8-dev
VERSION = `git describe --tags --dirty 2>/dev/null || echo $(_VERSION)`
2022-05-09 12:52:03 -07:00
PKG_CONFIG = pkg-config
# paths
PREFIX = /usr/local
MANDIR = $(PREFIX)/share/man
DATADIR = $(PREFIX)/share
2022-05-25 15:04:19 -07:00
XWAYLAND =
XLIBS =
2020-08-10 10:50:56 -07:00
# Uncomment to build XWayland support
2022-05-25 15:04:19 -07: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