17 lines
267 B
Makefile
17 lines
267 B
Makefile
# smu version
|
|
VERSION = 1.0
|
|
|
|
# paths
|
|
PREFIX = /usr/local
|
|
MANPREFIX = ${PREFIX}/share/man
|
|
|
|
# includes and libs
|
|
INCS = -I. -I/usr/include
|
|
LIBS = -L/usr/lib
|
|
|
|
# flags
|
|
CFLAGS = -Os -Wall -Werror -ansi ${INCS} -DVERSION=\"${VERSION}\"
|
|
LDFLAGS = ${LIBS}
|
|
|
|
# compiler
|
|
CC = cc
|