c-libp2p/os/Makefile

11 lines
119 B
Makefile
Raw Permalink Normal View History

DEPS =
2017-09-20 15:26:24 +00:00
OBJS = utils.o memstream.o
%.o: %.c $(DEPS)
$(CC) -c -o $@ $< $(CFLAGS)
all: $(OBJS)
clean:
rm -f $(OBJS)