c-libp2p/nodeio/Makefile

11 lines
104 B
Makefile
Raw Normal View History

2017-03-19 13:04:54 +00:00
DEPS =
OBJS = nodeio.o
%.o: %.c $(DEPS)
$(CC) -c -o $@ $< $(CFLAGS)
all: $(OBJS)
clean:
rm -f *.o