c-libp2p/Makefile

20 lines
375 B
Makefile
Raw Normal View History

2016-11-07 21:34:08 +00:00
OBJS = crypto/rsa.o crypto/encoding/asn1.o crypto/encoding/base58.o crypto/encoding/base64.o \
crypto/encoding/x509.o thirdparty/mbedtls/*.o
2016-11-09 16:22:25 +00:00
compile:
2016-11-07 21:34:08 +00:00
cd crypto; make all;
cd thirdparty; make all;
ar rcs libp2p.a $(OBJS)
2016-11-09 16:22:25 +00:00
test: compile
cd test; make all;
all: test
2016-11-07 21:34:08 +00:00
clean:
cd crypto; make clean;
cd thirdparty; make clean
2016-11-09 16:22:25 +00:00
cd test; make clean;
2016-11-07 21:34:08 +00:00
rm -rf libp2p.a