aboutsummaryrefslogtreecommitdiffstats
path: root/config.mk
diff options
context:
space:
mode:
Diffstat (limited to 'config.mk')
-rw-r--r--config.mk14
1 files changed, 0 insertions, 14 deletions
diff --git a/config.mk b/config.mk
deleted file mode 100644
index a79e63f..0000000
--- a/config.mk
+++ /dev/null
@@ -1,14 +0,0 @@
-PREFIX = /usr
-MANPREFIX = $(PREFIX)/share/man
-
-CC = cc -std=c11
-
-CPPFLAGS = -D_DEFAULT_SOURCE -D_BSD_SOURCE -D_XOPEN_SOURCE=700
-CFLAGS = -Wall -O3 -msse4 -msha
-LDFLAGS = -s
-
-# You can add -DALLOCA_LIMIT=# to CPPFLAGS, where # is a size_t
-# value, to put a limit on how large allocation the library is
-# allowed to make with alloca(3). For buffers that can have any
-# size this limit will be used if it wants to allocate a larger
-# buffer. Choose 0 to use malloc(3) instead of alloca(3).