c-libp2p/peer/Makefile

15 lines
268 B
Makefile
Raw Normal View History

2017-02-20 23:53:20 +00:00
CC = gcc
2017-03-21 15:08:01 +00:00
CFLAGS = -O0 -I../include -I../../c-protobuf -I../../c-multihash/include -I../../c-multiaddr/include -g3 -std=c99
2017-02-20 23:53:20 +00:00
LFLAGS =
DEPS =
2017-03-19 19:39:48 +00:00
OBJS = peer.o peerstore.o providerstore.o
2017-02-20 23:53:20 +00:00
%.o: %.c $(DEPS)
$(CC) -c -o $@ $< $(CFLAGS)
all: $(OBJS)
clean:
rm -f $(OBJS)