22a782d9f1
Working on transfer of big files
14 lines
257 B
Makefile
14 lines
257 B
Makefile
CC = gcc
|
|
CFLAGS = -O0 -I../include -I../../c-protobuf -I../../c-multihash/include -I../../c-multiaddr/include -g3 -std=c99
|
|
LFLAGS =
|
|
DEPS =
|
|
OBJS = datastore.o filestore.o
|
|
|
|
%.o: %.c $(DEPS)
|
|
$(CC) -c -o $@ $< $(CFLAGS)
|
|
|
|
|
|
all: $(OBJS)
|
|
|
|
clean:
|
|
rm -f $(OBJS)
|