From b0e371c63359ce326371bb039fd79afe4b7f18c7 Mon Sep 17 00:00:00 2001 From: "C. McEnroe" Date: Mon, 18 May 2020 16:45:23 -0400 Subject: Rewrite build and install to be more amenable to packaging Hopefully. Trying to write a FreeBSD port against this. --- Makefile | 48 +++++++++++++++++++++++++++++------------------- 1 file changed, 29 insertions(+), 19 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index d992548..0f6a8d8 100644 --- a/Makefile +++ b/Makefile @@ -1,15 +1,19 @@ -PREFIX = /usr/local -MANDIR = ${PREFIX}/share/man -ETCDIR = ${PREFIX}/etc -RUNDIR = /var/run +PREFIX ?= /usr/local +MANDIR ?= ${PREFIX}/share/man +ETCDIR ?= ${PREFIX}/etc +RUNDIR ?= /var/run + +CFLAGS += -I${PREFIX}/include +LDFLAGS += -L${PREFIX}/lib CFLAGS += -std=c11 -Wall -Wextra -Wpedantic -LDLIBS = -lcrypt -lcrypto -ltls +LDLIBS = -lcrypt -ltls BINS = calico pounce -MANS = ${BINS:=.1} +MANS = ${BINS:=.1.gz} RCS = ${BINS:%=rc.d/%} DIRS = ${ETCDIR}/pounce ${RUNDIR}/calico +INSTALLS = install-rcs install-dirs -include config.mk @@ -35,7 +39,10 @@ ${OBJS}: bounce.h compat.h dispatch.o: compat.h -.SUFFIXES: .in +.SUFFIXES: .1 .1.gz .in + +.1.1.gz: + gzip -cn $< > $@ .in: sed -e 's|%%PREFIX%%|${PREFIX}|g' $< > $@ @@ -44,21 +51,24 @@ tags: *.c *.h ctags -w *.c *.h clean: - rm -f tags ${BINS} ${RCS} ${OBJS} dispatch.o + rm -f tags ${BINS} ${MANS} ${RCS} ${OBJS} dispatch.o + +install: ${BINS} ${MANS} ${INSTALLS} + install -d ${DESTDIR}${PREFIX}/bin ${DESTDIR}${MANDIR}/man1 + install ${BINS} ${DESTDIR}${PREFIX}/bin + install -m 644 ${MANS} ${DESTDIR}${MANDIR}/man1 + +install-rcs: ${RCS} + install -d ${DESTDIR}${ETCDIR}/rc.d + install ${RCS} ${DESTDIR}${ETCDIR}/rc.d -install: ${BINS} ${MANS} ${RCS} - install -d ${PREFIX}/bin ${MANDIR}/man1 - install ${BINS} ${PREFIX}/bin - install -m 644 ${MANS} ${MANDIR}/man1 - if [ -n '${RCS}' ]; then install -d ${ETCDIR}/rc.d; fi - if [ -n '${RCS}' ]; then install ${RCS} ${ETCDIR}/rc.d; fi - if [ -n '${DIRS}' ]; then install -d ${DIRS}; fi +install-dirs: + install -d ${DIRS:%=${DESTDIR}%} uninstall: - rm -f ${BINS:%=${PREFIX}/bin/%} - rm -f ${MANS:%=${MANDIR}/man1/%} - if [ -n '${RCS}' ]; then rm -f ${RCS:%=${ETCDIR}/%}; fi - if [ -n '${DIRS}' ]; then rmdir ${DIRS}; fi + rm -f ${BINS:%=${DESTDIR}${PREFIX}/bin/%} + rm -f ${MANS:%=${DESTDIR}${MANDIR}/man1/%} + rm -f ${RCS:%=${DESTDIR}${ETCDIR}/%} localhost.crt: printf "[dn]\nCN=localhost\n[req]\ndistinguished_name=dn\n[EXT]\nsubjectAltName=DNS:localhost\nkeyUsage=digitalSignature\nextendedKeyUsage=serverAuth" \ -- cgit 1.4.1