diff options
author | June McEnroe <june@causal.agency> | 2020-03-01 19:20:23 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2020-03-01 21:14:52 -0500 |
commit | c876c88c2ac74255fa402c441343e8314d1fff8f (patch) | |
tree | e6420b0a64c4e8ef9709d129b3ce2a11b484602a /Makefile | |
parent | Advertise STS policy (diff) | |
download | pounce-c876c88c2ac74255fa402c441343e8314d1fff8f.tar.gz pounce-c876c88c2ac74255fa402c441343e8314d1fff8f.zip |
Replace .mk files with configure script
Copied and expanded from catgirl.
Diffstat (limited to '')
-rw-r--r-- | Makefile | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/Makefile b/Makefile index de08e06..597534e 100644 --- a/Makefile +++ b/Makefile @@ -1,13 +1,8 @@ PREFIX = /usr/local -MANDIR = ${PREFIX}/man +MANDIR = ${PREFIX}/share/man ETCDIR = ${PREFIX}/etc -LIBRESSL_PREFIX = /usr/local -LIBRESSL_BIN_PREFIX = ${LIBRESSL_PREFIX:%=%/bin} CFLAGS += -std=c11 -Wall -Wextra -Wpedantic -CFLAGS += ${LIBRESSL_PREFIX:%=-I%/include} -CFLAGS += ${LIBRESSL_BIN_PREFIX:%=-D'LIBRESSL_BIN_PREFIX="%/"'} -LDFLAGS += ${LIBRESSL_PREFIX:%=-L%/lib} LDLIBS = -lcrypt -lcrypto -ltls BINS = calico pounce |