move config.mak to config.mak.def (so user can freely change it)
[libc-test] / config.mak.def
1 CFLAGS += -pipe -std=c99 -D_POSIX_C_SOURCE=200809L -Wall -Wno-unused-function -Wno-missing-braces -Wno-unused -Wno-overflow
2 CFLAGS += -Wno-unknown-pragmas -fno-builtin -frounding-math
3 CFLAGS += -g
4 LDFLAGS += -g
5 LDLIBS += -lpthread -lm -lrt
6
7 # glibc specific settings
8 CFLAGS += -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE
9 LDLIBS += -lcrypt -ldl -lresolv -lutil
10
11 AR      = $(CROSS_COMPILE)ar
12 RANLIB  = $(CROSS_COMPILE)ranlib
13