slow/config.mk
Simon Lieb df513b4f07 Update to version 1.0.
Remove todo.txt file ; Done all the todos.
2015-03-11 18:52:03 +01:00

19 lines
286 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}\"
CFLAGS = -std=c99 -pedantic -Wall -Os ${INCS} ${CPPFLAGS}
LDFLAGS = -s ${LIBS}
# compiler and linker
CC = cc