ubase/config.mk
sin 353b8a2c0b Remove -pedantic for now
This causes all sorts of warnings including certain system
headers on OpenBSD.  We'll revisit this in the future.
2013-08-06 20:34:44 +01:00

24 lines
389 B
Makefile

# ubase version
VERSION = 0.0
# paths
PREFIX = /usr/local
MANPREFIX = $(PREFIX)/share/man
# OS to build against
OS = linux
#OS = openbsd
#CC = gcc
#CC = musl-gcc
LD = $(CC)
CPPFLAGS = -D_BSD_SOURCE -D_GNU_SOURCE
CFLAGS = -g -ansi -Wall -Wno-long-long $(CPPFLAGS)
LDFLAGS = -g
#CC = tcc
#LD = $(CC)
#CPPFLAGS = -D_POSIX_C_SOURCE=200112L
#CFLAGS = -Os -Wall $(CPPFLAGS)
#LDFLAGS =