stagit/config.mk

33 lines
692 B
Makefile
Raw Normal View History

2015-12-05 20:07:52 +00:00
# customize below to fit your system
# paths
PREFIX = /usr/local
MANPREFIX = ${PREFIX}/man
2015-12-05 20:07:52 +00:00
# compiler and linker
#CC = cc
2015-12-05 20:07:52 +00:00
GITINC = /usr/local/include
GITLIB = /usr/local/lib
# includes and libs
INCS = -I${GITINC}
LIBS = -L${GITLIB} -lgit2
2015-12-05 20:07:52 +00:00
# debug
#CFLAGS = -fstack-protector-all -O0 -g -std=c99 -Wall -Wextra -pedantic ${INCS}
#LDFLAGS = ${LIBS}
2015-12-05 20:07:52 +00:00
# optimized
CFLAGS = -O2 -std=c99 ${INCS}
LDFLAGS = -s ${LIBS}
2015-12-05 20:07:52 +00:00
# optimized static
#CFLAGS = -static -O2 -std=c99 ${INCS}
2015-12-05 20:07:52 +00:00
#LDFLAGS = -static -s ${LIBS}
CPPFLAGS = -D_XOPEN_SOURCE=700 -D_DEFAULT_SOURCE -D_BSD_SOURCE ${INCS}
# OpenBSD 5.9+: use pledge(2)
#CPPFLAGS = -D_XOPEN_SOURCE=700 -D_DEFAULT_SOURCE -D_BSD_SOURCE -DUSE_PLEDGE ${INCS}