c-ipfs/repo/Makefile

15 lines
253 B
Makefile
Raw Normal View History

2016-10-27 01:14:07 +00:00
CC = gcc
2016-11-07 21:29:30 +00:00
CFLAGS = -O0 -I../include -I../../c-libp2p/include
DEPS =
2016-10-27 01:14:07 +00:00
OBJS = repo.o
%.o: %.c $(DEPS)
$(CC) -c -o $@ $< $(CFLAGS)
all: $(OBJS)
2016-10-27 18:11:34 +00:00
cd config; make all;
cd fsrepo; make all;
2016-10-27 01:14:07 +00:00
clean:
2016-10-27 18:11:34 +00:00
rm -f *.o
cd config; make clean;
cd fsrepo; make clean;