aboutsummaryrefslogtreecommitdiffstats
path: root/optimised.mk
blob: 272fda2dec235dd9e8149fcf740ab40b99cd64d1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
PREFIX    = /usr
MANPREFIX = $(PREFIX)/share/man

# These have not been extensively tested but appear to:
#     * Produce false warnings
#     * Slowdown the library's performance
#   -flto -flto-compression-level -flto-partition={1to1,balanced,mix,none} -flto-report -flto-report-wpa -fwpa
CCOPTIMISE = -falign-functions=0 -fkeep-inline-functions -fmerge-all-constants -Ofast
LDOPTIMISE =

CC = c99

CFLAGS   = -Wall -Wextra $(CCOPTIMISE)
CPPFLAGS = -D_DEFAULT_SOURCE -D_BSD_SOURCE -D_XOPEN_SOURCE=700
LDFLAGS  = $(LDOPTIMISE)