aboutsummaryrefslogtreecommitdiff
path: root/config.mk
diff options
context:
space:
mode:
authorCem Keylan <cem@ckyln.com>2021-07-22 03:23:56 +0300
committerCem Keylan <cem@ckyln.com>2021-07-22 03:23:56 +0300
commitaf32ee39f2576858321483d77699f7d4a5a8bf24 (patch)
tree52a010d225d100caa2075bb18956a37d72dd5a92 /config.mk
parent507ba2bdc6d01c53a72cdee1f8c5c8db0ba1a1aa (diff)
downloadotools-af32ee39f2576858321483d77699f7d4a5a8bf24.tar.gz
add configure script
Diffstat (limited to 'config.mk')
-rw-r--r--config.mk34
1 files changed, 0 insertions, 34 deletions
diff --git a/config.mk b/config.mk
deleted file mode 100644
index 57b774d..0000000
--- a/config.mk
+++ /dev/null
@@ -1,34 +0,0 @@
-PREFIX = /usr/local
-BINDIR = ${PREFIX}/bin
-MANPREFIX = ${PREFIX}/share/man
-
-AR ?= ar
-CC ?= cc
-RANLIB ?= ranlib
-RM ?= rm -f
-YACC ?= yacc
-
-
-# You can uncomment the latter if you aren't using libtls-bearssl. If you
-# aren't linking statically, '-ltls' should be suffice.
-TLSLIB = `pkgconf --static --libs libtls`
-
-# You can replace the following to 'lib/libz/libz.a' in order to build with the
-# in-source zlib.
-ZLIB = -lz
-
-# If fts is available on your system, we need to disable building it here.
-# Change with 1 if you are using musl-fts, 2 if you are using glibc.
-FTS=0
-
-CFLAGS += -Wall -Wno-pointer-sign -Wno-maybe-uninitialized \
- -Wno-attributes -I${PWD}/includedir \
- -D 'DEF_WEAK(n)=_Static_assert(1, "")' \
- -idirafter ${PWD}/include \
- -idirafter ${PWD}/sys \
- -idirafter ${PWD}/lib/libutil \
- -idirafter ${PWD}/lib/libcrypto
-
-# If you are using a less implementation with tags support, uncomment
-# the following.
-# CFLAGS += -DHAVE_LESS_T