mirror of
git://git.suckless.org/sbase
synced 2025-02-10 00:37:00 +00:00
We seem to have problems building individual tools across various make implementations. If anyone can step up and fix this we will remove the dependency on GNU make.
16 lines
243 B
Makefile
16 lines
243 B
Makefile
# sbase version
|
|
VERSION = 0.0
|
|
|
|
# paths
|
|
PREFIX = /usr/local
|
|
MANPREFIX = $(PREFIX)/share/man
|
|
|
|
CC = cc
|
|
LD = $(CC)
|
|
AR = ar
|
|
RANLIB = ranlib
|
|
|
|
CPPFLAGS = -D_DEFAULT_SOURCE -D_BSD_SOURCE -D_GNU_SOURCE
|
|
CFLAGS = -std=c99 -Wall -pedantic
|
|
LDFLAGS = -s
|