dirl/config.mk
Hiltjo Posthuma 6ec37625f8 config.mk: fix compiler warning, just use DEFAULT_SOURCE
warning was:
warning: implicit declaration of function 'strptime'
warning: implicit declaration of function 'setgroups'
2017-06-27 23:31:08 +02:00

16 lines
269 B
Makefile

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