about 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 'Makefile')
-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 $@