Browse Source

Makefile : ccan/asort is referenced

Added explicit compilation and linking of ccan/asort as needed by daemon/chaintopology
ppa-0.6.1
ocinq 8 years ago
committed by GitHub
parent
commit
bcdab60694
  1. 3
      Makefile

3
Makefile

@ -57,6 +57,7 @@ CCAN_OBJS := \
ccan-crypto-ripemd160.o \
ccan-crypto-sha256.o \
ccan-crypto-shachain.o \
ccan-asort.o \
ccan-err.o \
ccan-hash.o \
ccan-htable.o \
@ -358,6 +359,8 @@ ccan-take.o: $(CCANDIR)/ccan/take/take.c
$(CC) $(CFLAGS) -c -o $@ $<
ccan-list.o: $(CCANDIR)/ccan/list/list.c
$(CC) $(CFLAGS) -c -o $@ $<
ccan-asort.o: $(CCANDIR)/ccan/asort/asort.c
$(CC) $(CFLAGS) -c -o $@ $<
ccan-read_write_all.o: $(CCANDIR)/ccan/read_write_all/read_write_all.c
$(CC) $(CFLAGS) -c -o $@ $<
ccan-str.o: $(CCANDIR)/ccan/str/str.c

Loading…
Cancel
Save