c-libp2p/net/Makefile

11 lines
185 B
Makefile
Raw Normal View History

DEPS =
2017-11-20 00:29:40 +00:00
OBJS = sctp.o socket.o tcp.o udp.o multistream.o protocol.o connectionstream.o stream.o server.o
%.o: %.c $(DEPS)
$(CC) -c -o $@ $< $(CFLAGS)
all: $(OBJS)
clean:
rm -f *.o