diff options
Diffstat (limited to 'datastore-leveldb/Makefile')
-rw-r--r-- | datastore-leveldb/Makefile | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/datastore-leveldb/Makefile b/datastore-leveldb/Makefile new file mode 100644 index 0000000..6a55822 --- /dev/null +++ b/datastore-leveldb/Makefile @@ -0,0 +1,23 @@ +OBJ= src/web.o src/db.o src/server.o mongoose/mongoose.o +OUT = bin/server + +CFLAGS += -Wall -DNO_CGI -DNO_POPEN -DUSE_IPV6 -DNO_SSL +CXXFLAGS += -Wall -std=c++11 -Imongoose +LDFLAGS += -lleveldb -lboost_regex -lboost_program_options + +ifdef DEBUG +CFLAGS += -g -O0 +CXXFLAGS += -g -O0 +else +CFLAGS += -O3 +CXXFLAGS += -O3 +endif + + +all: build + +build: $(OBJ) + $(CXX) $(CPPFLAGS) $(OBJ) -o $(OUT) $(LDFLAGS) + +clean: + rm -rf $(OUT) $(OBJ) |