config.mk (388B)
1 # This work is dedicated to the public domain. 2 # See COPYING file for more information. 3 4 VERSION != date '+%Y-%m-%d' 5 6 PREFIX = /usr/local 7 MANPREFIX = $(PREFIX)/share/man 8 9 CPPFLAGS = -D_DEFAULT_SOURCE -DVERSION=\"$(VERSION)\" 10 CFLAGS = -g -std=c89 -Wall -Wextra -pedantic -Wfatal-errors -Wconversion\ 11 -Wstrict-prototypes -Wold-style-definition $(CPPFLAGS) 12 LDFLAGS = $(LIBS) 13 14 CC = cc