config.mk (332B)
1 # sltar version 2 VERSION = 0.3.1 3 4 # Customize below to fit your system 5 6 # paths 7 PREFIX = /usr/local 8 MANPREFIX = ${PREFIX}/share/man 9 10 # includes and libs 11 INCS = -I. -I/usr/include 12 LIBS = -L/usr/lib -lc 13 14 # flags 15 CFLAGS = -static -Os -g -Wall -Werror ${INCS} -DVERSION=\"${VERSION}\" 16 LDFLAGS = -g ${LIBS} 17 18 # compiler and linker 19 CC = cc