c-libp2p/os/Makefile

14 lines
165 B
Makefile
Raw Normal View History

CC = gcc
CFLAGS = $(INCLUDE) -O0 -g3
LFLAGS =
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)