1879e14e79
Since now config.def.h has been reduced we don't have any more unused variables and thus the manual fiddling with error-levels is no longer necessary. To get a completely clean result though we have to still cast some variables here and there.
16 lines
317 B
Makefile
16 lines
317 B
Makefile
# quark version
|
|
VERSION = 0
|
|
|
|
# Customize below to fit your system
|
|
|
|
# paths
|
|
PREFIX = /usr/local
|
|
MANPREFIX = $(PREFIX)/share/man
|
|
|
|
# flags
|
|
CPPFLAGS = -DVERSION=\"$(VERSION)\" -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=700 -D_BSD_SOURCE
|
|
CFLAGS = -std=c99 -pedantic -Wall -Wextra -Os
|
|
LDFLAGS = -s
|
|
|
|
# compiler and linker
|
|
CC = cc
|