slow/config.mk

20 lines
286 B
Makefile
Raw Permalink Normal View History

2013-08-02 23:23:04 +02:00
# slow version
VERSION = 1.0
2013-08-02 23:23:04 +02:00
# 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