b462d9ef53
Successfully writing to lightningdb. Now to pull it back out. Also need to write to the blockstore.
20 lines
No EOL
281 B
Makefile
20 lines
No EOL
281 B
Makefile
CC = gcc
|
|
CFLAGS = -O0 -I../include -I../../c-libp2p/include
|
|
|
|
ifdef DEBUG
|
|
CFLAGS += -g3
|
|
endif
|
|
|
|
DEPS =
|
|
OBJS =
|
|
|
|
%.o: %.c $(DEPS)
|
|
$(CC) -c -o $@ $< $(CFLAGS)
|
|
|
|
all: $(OBJS)
|
|
cd config; make all;
|
|
cd fsrepo; make all;
|
|
clean:
|
|
rm -f *.o
|
|
cd config; make clean;
|
|
cd fsrepo; make clean;
|