c-libp2p/peer/Makefile

11 lines
143 B
Makefile
Raw Normal View History

2017-02-20 18:53:20 -05:00
DEPS =
2017-03-19 14:39:48 -05:00
OBJS = peer.o peerstore.o providerstore.o
2017-02-20 18:53:20 -05:00
%.o: %.c $(DEPS)
$(CC) -c -o $@ $< $(CFLAGS) -std=c11
2017-02-20 18:53:20 -05:00
all: $(OBJS)
clean:
rm -f $(OBJS)