about summary refs log tree commit diff
path: root/Makefile
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2018-08-13 19:27:22 -0400
committerJune McEnroe <june@causal.agency>2018-08-13 19:27:22 -0400
commite713e6a1620c8859b75b9d4f429d777caace8f87 (patch)
treeca94049b9a835604c20771c4741c9ca650a8af38 /Makefile
parentDetect pings anywhere in message (diff)
downloadcatgirl-e713e6a1620c8859b75b9d4f429d777caace8f87.tar.gz
catgirl-e713e6a1620c8859b75b9d4f429d777caace8f87.zip
Improve configuration of Makefile
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile12
1 files changed, 8 insertions, 4 deletions
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 \
a>June McEnroe 2019-09-27Fail on HTTP failure status in titleJune McEnroe 2019-09-23Add Trail of LightningJune McEnroe 2019-09-22Revert "Enable cookies in title"June McEnroe This reverts commit 279111dda15dd9170e11b9688eb973f2af2e6300. 2019-09-20Enable cookies in titleJune McEnroe Perhaps this will make it less suspicious to Google. Who knows. 2019-09-16Use sensitivity aliases in TF2June McEnroe 2019-09-16Add The Just CityJune McEnroe 2019-09-12Only GET the final redirect locationJune McEnroe 2019-09-12Consume entire bodyJune McEnroe Aborting the request and leaving data around may be causing intermittent errors. Just discard the rest of the data. 2019-09-10Add title -v flagJune McEnroe 2019-09-10Use curl error bufferJune McEnroe 2019-09-10Set Accept-Encoding in titleJune McEnroe Because apparently it's fine for servers to respond with Content-Encoding you didn't ask for, and curl won't decode it if you didn't ask for it. 2019-09-08Set title User-AgentJune McEnroe Some things don't like you if you don't send one. 2019-09-07Add -x flag to titleJune McEnroe 2019-09-07Ignore SIGPIPE in relayJune McEnroe Allows restarting consumers safely. 2019-09-07Add A Memory Called EmpireJune McEnroe 2019-09-05Handle lack of Content-TypeJune McEnroe 2019-09-05Use CURLINFO_CONTENT_TYPEJune McEnroe Oops, didn't see this. 2019-09-05Decode entities in titlesJune McEnroe 2019-09-05Print title as soon as it's availableJune McEnroe 2019-09-05Use CURL_PREFIX to set flagsJune McEnroe 2019-09-05Add titleJune McEnroe 2019-09-04Add Avorter n'est pas tuerJune McEnroe 2019-08-29Unset executable on shell scriptsJune McEnroe 2019-08-29Add long-missing setopt to bin.7June McEnroe 2019-08-29Add editJune McEnroe