dirl/config.mk
Armin Friedl 50951cafd8
Some checks failed
continuous-integration/drone/push Build is failing
Prepare separate dirl distribution
2020-09-01 23:05:40 +02:00

16 lines
326 B
Makefile

# dirl version
VERSION = 0
# Customize below to fit your system
# paths
PREFIX = /usr/local
MANPREFIX = $(PREFIX)/share/man
# flags
CPPFLAGS = -DVERSION=\"$(VERSION)\" -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=700 -D_BSD_SOURCE
CFLAGS = -std=c99 -pedantic -Wall -Wextra -Os $(STATIC)
LDFLAGS = -s
# compiler and linker
CC = cc