92d1c286b8
posix c99 does not accept `-pedantic` Fixes: https://codeberg.org/dwl/dwl/issues/584
18 lines
311 B
Makefile
18 lines
311 B
Makefile
_VERSION = 0.5
|
|
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
|