Makefile: fix test build
was broken after moving c-multiaddress and c-multihash as subprojects
This commit is contained in:
parent
8267745863
commit
209e7c432e
1 changed files with 2 additions and 2 deletions
|
@ -5,9 +5,9 @@ ifdef DEBUG
|
||||||
CFLAGS += -g3
|
CFLAGS += -g3
|
||||||
endif
|
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
|
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)
|
%.o: %.c $(DEPS)
|
||||||
$(CC) -c -o $@ $< $(CFLAGS)
|
$(CC) -c -o $@ $< $(CFLAGS)
|
||||||
|
|
Loading…
Reference in a new issue