From e713e6a1620c8859b75b9d4f429d777caace8f87 Mon Sep 17 00:00:00 2001 From: Curtis McEnroe Date: Mon, 13 Aug 2018 19:27:22 -0400 Subject: Improve configuration of Makefile --- Makefile | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index f9c903e..a1044d3 100644 --- a/Makefile +++ b/Makefile @@ -1,8 +1,12 @@ -USER = chat +LIBRESSL_PREFIX = /usr/local /usr/local/opt/libressl +CHROOT_USER = chat +CHROOT_GROUP = $(CHROOT_USER) + CFLAGS += -Wall -Wextra -Wpedantic -CFLAGS += -I/usr/local/include -I/usr/local/opt/libressl/include -LDFLAGS += -L/usr/local/lib -L/usr/local/opt/libressl/lib +CFLAGS += $(LIBRESSL_PREFIX:%=-I%/include) +LDFLAGS += $(LIBRESSL_PREFIX:%=-L%/lib) LDLIBS = -lcursesw -ltls + OBJS = chat.o edit.o handle.o input.o irc.o pls.o tab.o tag.o term.o ui.o url.o all: tags chat @@ -29,7 +33,7 @@ chroot.tar: chat root/usr/local/etc/ssl \ root/usr/share \ root/usr/share/misc - install -d -o $(USER) -g $(USER) root/home/$(USER) + install -d -o $(CHROOT_USER) -g $(CHROOT_GROUP) root/home/$(CHROOT_USER) cp -p -f /libexec/ld-elf.so.1 root/libexec cp -p -f \ /lib/libc.so.7 \ -- cgit 1.4.1