c-libp2p/peer/Makefile

11 lines
143 B
Makefile
Raw Normal View History

2017-02-20 23:53:20 +00:00
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) -std=c11
2017-02-20 23:53:20 +00:00
all: $(OBJS)
clean:
rm -f $(OBJS)