dirl/config.mk

17 lines
326 B
Makefile
Raw Normal View History

2020-09-01 20:50:47 +00:00
# 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
2020-09-01 20:50:47 +00:00
CFLAGS = -std=c99 -pedantic -Wall -Wextra -Os $(STATIC)
LDFLAGS = -s
# compiler and linker
2017-08-13 22:06:26 +00:00
CC = cc