c-ipfs/routing/Makefile

19 lines
299 B
Makefile
Raw Normal View History

CC = gcc
2017-02-27 17:27:40 +00:00
CFLAGS = -O0 -I../include -I../../c-libp2p/include -I../../c-multiaddr/include -I../../c-protobuf -Wall
ifdef DEBUG
CFLAGS += -g3
endif
LFLAGS =
DEPS =
2017-03-19 13:05:25 +00:00
OBJS = offline.o online.o k_routing.o supernode.o
%.o: %.c $(DEPS)
$(CC) -c -o $@ $< $(CFLAGS)
all: $(OBJS)
clean:
rm -f $(OBJS)