c-ipfs/os/Makefile

14 lines
173 B
Makefile
Raw Normal View History

2016-10-27 18:11:34 +00:00
CC = gcc
2016-11-07 21:29:30 +00:00
CFLAGS = -O0 -I../include -I../../c-libp2p/include
2016-10-27 18:11:34 +00:00
LFLAGS =
2016-11-07 21:29:30 +00:00
DEPS =
2016-10-27 18:11:34 +00:00
OBJS = utils.o
%.o: %.c $(DEPS)
$(CC) -c -o $@ $< $(CFLAGS)
all: $(OBJS)
clean:
rm -f *.o