Add config.mk.
This commit is contained in:
parent
a20dcaafee
commit
a424583e26
23
config.mk
Normal file
23
config.mk
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
|
||||||
|
VERSION="0.3"
|
||||||
|
|
||||||
|
# paths
|
||||||
|
PREFIX = /usr/local
|
||||||
|
MANPREFIX = ${PREFIX}/share/man
|
||||||
|
|
||||||
|
# includes and libs
|
||||||
|
INCS = -I. -I/usr/include
|
||||||
|
|
||||||
|
# BSD
|
||||||
|
#LIBS = -L/usr/lib -lc
|
||||||
|
# Linux
|
||||||
|
LIBS = -L/usr/lib -lc -lbsd
|
||||||
|
|
||||||
|
# flags
|
||||||
|
CPPFLAGS = -DVERSION=\"${VERSION}\"
|
||||||
|
CFLAGS += -g -std=c99 -pedantic -Wall -Wvariadic-macros -Os ${INCS} ${CPPFLAGS}
|
||||||
|
LDFLAGS += -g ${LIBS}
|
||||||
|
|
||||||
|
# compiler and linker
|
||||||
|
# CC = cc
|
||||||
|
|
Loading…
Reference in New Issue
Block a user