diff options
Diffstat (limited to 'datastore-leveldb/Makefile')
-rw-r--r-- | datastore-leveldb/Makefile | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/datastore-leveldb/Makefile b/datastore-leveldb/Makefile deleted file mode 100644 index 6a55822..0000000 --- a/datastore-leveldb/Makefile +++ /dev/null @@ -1,23 +0,0 @@ -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) |