summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--Linux.mk1
-rw-r--r--Makefile2
2 files changed, 2 insertions, 1 deletions
diff --git a/Linux.mk b/Linux.mk
index 9627af9..15e704f 100644
--- a/Linux.mk
+++ b/Linux.mk
@@ -1,5 +1,6 @@
 CFLAGS += -D_GNU_SOURCE -D'CERTBOT_PATH="/etc/letsencrypt"'
 LDLIBS = -lcrypt -lpthread -l:libtls.a -l:libssl.a -l:libcrypto.a
+LDLIBS_calico = -l:libcrypto.a
 
 MANDIR = ${PREFIX}/share/man
 ETCDIR = /etc
diff --git a/Makefile b/Makefile
index c0ea331..3ea6c06 100644
--- a/Makefile
+++ b/Makefile
@@ -28,7 +28,7 @@ dev: tags all
 all: ${BINS}
 
 calico: dispatch.o
-	${CC} ${LDFLAGS} dispatch.o -o $@
+	${CC} ${LDFLAGS} dispatch.o ${LDLIBS_calico} -o $@
 
 pounce: ${OBJS}
 	${CC} ${LDFLAGS} ${OBJS} ${LDLIBS} -o $@
12-31Implement nick-colored outputJune McEnroe 2019-12-31Only enable highlighting on terminal outputJune McEnroe 2019-12-31Set up pager pipeJune McEnroe 2019-12-30Normalize date inputJune McEnroe Mostly this just allows the use of 'now'. 2019-12-30Add initial rough version of scoopJune McEnroe 2019-12-30Join with USING wherever possibleJune McEnroe 2019-12-30Add -D flag to prospective scoop manualJune McEnroe 2019-12-30Order results by ID in outer query in litterboxJune McEnroe 2019-12-30Use X macro for Type enumJune McEnroe 2019-12-30Remove scoop -ABCJune McEnroe I can almost get these to work with an inner and outer SQL query, but when contexts starts overlapping it becomes a disaster, so I'm leavin it out at least for now. 2019-12-30Add limit option for litterbox's search query interfaceJune McEnroe