Makefile: fix test build

was broken after moving c-multiaddress and c-multihash as subprojects
master^2^2
Radu Iliescu 2018-12-03 06:04:51 -05:00
parent 8267745863
commit 209e7c432e
1 changed files with 2 additions and 2 deletions

View File

@ -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)