From e2abcdca396661cbe0ae2ddb13d5c2b85682c13a Mon Sep 17 00:00:00 2001 From: Cem Keylan Date: Fri, 16 Oct 2020 17:41:25 +0300 Subject: initial commit --- config.mk | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 config.mk (limited to 'config.mk') diff --git a/config.mk b/config.mk new file mode 100644 index 0000000..c064088 --- /dev/null +++ b/config.mk @@ -0,0 +1,29 @@ +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 = -ltls -lbearssl +#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 + +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 + +LDFLAGS = -static -- cgit v1.2.3