summary refs log tree commit diff
path: root/Makefile
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2020-04-20 10:36:03 -0400
committerJune McEnroe <june@causal.agency>2020-04-20 10:36:03 -0400
commita2e95a5618e38d04f6efaf1f16c683631a9346f9 (patch)
tree17db927cc99a6083b721097a82c0cfa96aa61596 /Makefile
parentUse for loop for getopt in calico (diff)
downloadpounce-a2e95a5618e38d04f6efaf1f16c683631a9346f9.tar.gz
pounce-a2e95a5618e38d04f6efaf1f16c683631a9346f9.zip
Use . as ${LDLIBS.$@} separator
Diffstat (limited to '')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 597534e..23053ff 100644
--- a/Makefile
+++ b/Makefile
@@ -25,7 +25,7 @@ dev: tags all
 all: ${BINS}
 
 calico: dispatch.o
-	${CC} ${LDFLAGS} dispatch.o ${LDLIBS_calico} -o $@
+	${CC} ${LDFLAGS} dispatch.o ${LDLIBS.calico} -o $@
 
 pounce: ${OBJS}
 	${CC} ${LDFLAGS} ${OBJS} ${LDLIBS} -o $@
entropyā€¯Issam E. Maghni 2020-08-16contrib/palaver: Add no message preview flagsJune McEnroe 2020-08-13contrib/palaver: Don't set channel for PMsJune McEnroe 2020-08-13Fix unintended interception of NICK after registrationJune McEnroe 2020-08-12Add Additional Components section to READMEJune McEnroe 2020-08-12Document -L / palaver optionJune McEnroe 2020-08-11contrib/palaver: Document service configurationJune McEnroe 2020-08-11contrib/palaver: Add install target and rc scriptJune McEnroe 2020-08-11contrib/palaver: Implement command and notificationsJune McEnroe