c-ipfs/repo/fsrepo/Makefile

19 lines
375 B
Makefile
Raw Normal View History

2016-10-27 18:11:34 +00:00
CC = gcc
2017-04-03 16:55:36 +00:00
CFLAGS = -O0 -I../../include -I../../../c-libp2p/include -I../../../lmdb/libraries/liblmdb -I../../../c-protobuf -I../../../c-multiaddr/include -Wall -std=c99
ifdef DEBUG
CFLAGS += -g3
endif
2016-10-27 18:11:34 +00:00
LFLAGS =
2016-11-07 21:29:30 +00:00
DEPS =
OBJS = fs_repo.o jsmn.o lmdb_datastore.o lmdb_journalstore.o lmdb_cursor.o
2016-10-27 18:11:34 +00:00
%.o: %.c $(DEPS)
$(CC) -c -o $@ $< $(CFLAGS)
all: $(OBJS)
clean:
rm -f *.o