7a587cfa36
A separate INCS/LIBS is not really necessary here and confuses the common case.
16 lines
312 B
Makefile
16 lines
312 B
Makefile
# quark version
|
|
VERSION = 0.1
|
|
|
|
# Customize below to fit your system
|
|
|
|
# paths
|
|
PREFIX = /usr/local
|
|
MANPREFIX = ${PREFIX}/share/man
|
|
|
|
# flags
|
|
CPPFLAGS = -DVERSION=\"${VERSION}\" -D_POSIX_C_SOURCE=200809 -D_BSD_SOURCE
|
|
CFLAGS = -g -std=c99 -pedantic -Wall -O0 ${CPPFLAGS}
|
|
LDFLAGS = # -s
|
|
|
|
# compiler and linker
|
|
CC = cc
|