From 209e7c432eb4cfca1d7fa8c9131a6957556598b6 Mon Sep 17 00:00:00 2001 From: Radu Iliescu Date: Mon, 3 Dec 2018 06:04:51 -0500 Subject: [PATCH] Makefile: fix test build was broken after moving c-multiaddress and c-multihash as subprojects --- test/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/Makefile b/test/Makefile index 24b8431..05e9d51 100644 --- a/test/Makefile +++ b/test/Makefile @@ -5,9 +5,9 @@ ifdef DEBUG CFLAGS += -g3 endif -LFLAGS = -L../ -L../../c-multihash -L../../c-multiaddr +LFLAGS = -L../ -L../c-multihash -L../c-multiaddr DEPS = crypto/test_base58.h crypto/test_rsa.h test_mbedtls.h -OBJS = testit.o ../../c-protobuf/protobuf.o ../../c-protobuf/varint.o ../libp2p.a +OBJS = testit.o ../c-protobuf/protobuf.o ../c-protobuf/varint.o ../libp2p.a %.o: %.c $(DEPS) $(CC) -c -o $@ $< $(CFLAGS)