From f98360441859122fb261d6b3804620c24e7852c9 Mon Sep 17 00:00:00 2001 From: "C. McEnroe" Date: Sat, 21 Dec 2019 06:33:43 -0500 Subject: Add Makefile --- Makefile | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..312c579 --- /dev/null +++ b/Makefile @@ -0,0 +1,23 @@ +PREFIX = /usr/local +MANDIR = ${PREFIX}/share/man +LIBRESSL_PREFIX = /usr/local + +CFLAGS += -std=c11 -Wall -Wextra -Wpedantic +CFLAGS += ${LIBRESSL_PREFIX:%=-I%/include} +LDFLAGS += ${LIBRESSL_PREFIX:%=-L%/lib} +LDLIBS = -ltls + +-include config.mk + +imbox: + +clean: + rm -f imbox + +install: imbox imbox.1 + install -d ${PREFIX}/bin ${MANDIR}/man1 + install imbox ${PREFIX}/bin + gzip -c imbox.1 > ${MANDIR}/man1/imbox.1.gz + +uninstall: + rm -f ${PREFIX}/bin/imbox ${MANDIR}/man1/imbox.1.gz -- cgit 1.4.1