6ec37625f8
warning was: warning: implicit declaration of function 'strptime' warning: implicit declaration of function 'setgroups'
16 lines
269 B
Makefile
16 lines
269 B
Makefile
# quark version
|
|
VERSION = 0
|
|
|
|
# Customize below to fit your system
|
|
|
|
# paths
|
|
PREFIX = /usr/local
|
|
MANPREFIX = $(PREFIX)/man
|
|
|
|
# flags
|
|
CPPFLAGS = -DVERSION=\"$(VERSION)\" -D_DEFAULT_SOURCE
|
|
CFLAGS = -std=c99 -pedantic -Wall -Os
|
|
LDFLAGS = -s
|
|
|
|
# compiler and linker
|
|
CC = cc
|