slow/config.mk
2015-04-01 22:52:22 +02:00

19 lines
314 B
Makefile

# slow version
VERSION = 1.0
# Customize below to fit your system
# paths
PREFIX = /usr/local
# includes and libs
INCS =
LIBS =
# flags
CPPFLAGS = -DVERSION=\"${VERSION}\" -D_XOPEN_SOURCE=500
CFLAGS = -std=c99 -pedantic -Wall -Os ${INCS} ${CPPFLAGS}
LDFLAGS = -static -s ${LIBS}
# compiler and linker
CC = cc