c-libp2p/Makefile

32 lines
663 B
Makefile
Raw Normal View History

COMPONENTS = conn crypto db thirdparty hashmap identify net os peer record routing secio swarm utils yamux
export DEBUG = true
ROOT= $(shell pwd)
export INCLUDE = -I$(ROOT)/include -I$(ROOT)/c-protobuf -I$(ROOT)/c-multihash/include -I$(ROOT)/c-multiaddr/include
export CFLAGS = $(INCLUDE) -Wall -O0
ifdef DEBUG
CFLAGS += -g3
endif
2017-10-25 17:28:53 +00:00
OBJS = $(shell (find $(COMPONENTS) -name *.o))
2016-11-07 21:34:08 +00:00
link: compile
$(AR) rcs libp2p.a $(OBJS) $(LINKER_FLAGS)
2016-11-07 21:34:08 +00:00
2017-02-13 18:26:41 +00:00
compile:
$(foreach dir,$(COMPONENTS), $(MAKE) -C $(dir) all ;)
test: compile link
2016-11-09 16:22:25 +00:00
cd test; make all;
rebuild: clean all
2016-11-09 16:22:25 +00:00
all: test
2016-11-07 21:34:08 +00:00
clean:
$(foreach dir,$(COMPONENTS), $(MAKE) -C $(dir) clean ;)
make -C test clean