19 lines
286 B
Makefile
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
|