c-ipfs/test/Makefile

35 lines
1.3 KiB
Makefile
Raw Normal View History

2016-10-27 01:14:07 +00:00
CC = gcc
2016-12-12 11:27:06 +00:00
CFLAGS = -O0 -I../include -I../../c-libp2p/include -I../../c-multihash/include -I../../c-multiaddr/ -I../../c-protobuf -g3 -Wall
LFLAGS = -L../../c-libp2p -L../../c-multihash -L../../c-multiaddr -lp2p -lm -lmultihash -lmultiaddr -lpthread
2016-11-14 02:01:51 +00:00
DEPS = cmd/ipfs/test_init.h repo/test_repo_bootstrap_peers.h repo/test_repo_config.h repo/test_repo_identity.h cid/test_cid.h
2016-12-05 18:11:22 +00:00
OBJS = testit.o test_helper.o \
2016-12-05 15:50:17 +00:00
../blocks/block.o ../blocks/blockstore.o \
../cid/cid.o \
../cmd/ipfs/init.o \
../commands/argument.o ../commands/command_option.o ../commands/command.o ../commands/cli/parse.o \
../core/builder.o \
../datastore/ds_helper.o \
../flatfs/flatfs.o \
../importer/importer.o \
2016-12-15 17:38:08 +00:00
../importer/exporter.o \
2016-12-19 14:03:28 +00:00
../merkledag/merkledag.o ../merkledag/node.o \
2016-12-05 15:50:17 +00:00
../multibase/multibase.o \
../os/utils.o \
../repo/fsrepo/fs_repo.o ../repo/fsrepo/jsmn.o ../repo/fsrepo/lmdb_datastore.o \
../repo/config/config.o ../repo/config/identity.o \
2016-11-07 21:29:30 +00:00
../repo/config/bootstrap_peers.o ../repo/config/datastore.o ../repo/config/gateway.o \
../repo/config/addresses.o ../repo/config/swarm.o ../repo/config/peer.o \
2016-12-12 11:27:06 +00:00
../thirdparty/ipfsaddr/ipfs_addr.o \
../../c-protobuf/protobuf.o ../../c-protobuf/varint.o
2016-10-27 01:14:07 +00:00
%.o: %.c $(DEPS)
$(CC) -c -o $@ $< $(CFLAGS)
test_ipfs: $(OBJS)
$(CC) -o $@ $^ $(LFLAGS) ../../lmdb/libraries/liblmdb/liblmdb.a
2016-10-27 01:14:07 +00:00
all: test_ipfs
2016-10-27 01:14:07 +00:00
clean:
2016-10-27 01:16:25 +00:00
rm -f *.o
rm -f test_ipfs