diff options
author | June McEnroe <june@causal.agency> | 2020-04-20 10:36:03 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2020-04-20 10:36:03 -0400 |
commit | a2e95a5618e38d04f6efaf1f16c683631a9346f9 (patch) | |
tree | 17db927cc99a6083b721097a82c0cfa96aa61596 /Makefile | |
parent | Use for loop for getopt in calico (diff) | |
download | pounce-a2e95a5618e38d04f6efaf1f16c683631a9346f9.tar.gz pounce-a2e95a5618e38d04f6efaf1f16c683631a9346f9.zip |
Use . as ${LDLIBS.$@} separator
Diffstat (limited to '')
-rw-r--r-- | Makefile | 2 |
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 $@ |