Do case folding instead of simply lower casing.
[ciopfs.git] / config.mk
blob767409077e9366b66f3516bd48a1d1c0b3136433
1 # ciopfs version
2 VERSION = 0.0.1
4 # Customize below to fit your system
6 CC = cc
7 PREFIX = /usr/local
8 MANPREFIX = ${PREFIX}/share/man
10 CFLAGS_FUSE = $(shell pkg-config --cflags fuse) -DFUSE_USE_VERSION=26
11 LDFLAGS_FUSE = $(shell pkg-config --libs fuse) -lulockmgr
13 LDFLAGS_XATTR = -lattr
15 # optional for unicode supprt
16 CFLAGS_ICU = -DHAVE_LIBICUUC
17 LDFLAGS_ICU = -licuuc
19 CFLAGS += ${CFLAGS_FUSE} ${CFLAGS_ICU} -DVERSION=\"${VERSION}\" -DNDEBUG -Os
20 LDFLAGS += ${LDFLAGS_FUSE} ${LDFLAGS_ICU} ${LDFLAGS_XATTR}
22 DEBUG_CFLAGS = ${CFLAGS} -UNDEBUG -O0 -g -ggdb -Wall