HyriseSQLParser/Makefile

117 lines
2.9 KiB
Makefile
Raw Normal View History

# Directories.
BIN = bin
SRC = src
SRCPARSER = src/parser
2014-12-15 18:32:46 +01:00
# Files.
PARSERCPP = $(SRCPARSER)/bison_parser.cpp $(SRCPARSER)/flex_lexer.cpp
LIBCPP = $(shell find $(SRC) -name '*.cpp' -not -path "$(SRCPARSER)/*") $(PARSERCPP)
LIBOBJ = $(LIBCPP:%.cpp=%.o)
TESTCPP = $(shell find test/ -name '*.cpp')
2016-02-27 15:01:06 +01:00
ALLLIB = $(shell find $(SRC) -name '*.cpp' -not -path "$(SRCPARSER)/*") $(shell find $(SRC) -name '*.h' -not -path "$(SRCPARSER)/*")
ALLTEST = $(shell find test/ -name '*.cpp') $(shell find test/ -name '*.h')
EXAMPLESRC = $(shell find example/ -name '*.cpp') $(shell find example/ -name '*.h')
2016-02-27 15:01:06 +01:00
# Compiler & linker flags.
2017-06-14 20:17:22 +02:00
CFLAGS = -std=c++11 -Wall -Werror -fPIC
LIBFLAGS = -shared
TARGET = libsqlparser.so
INSTALL = /usr/local
2014-12-15 18:32:46 +01:00
2017-06-14 20:17:22 +02:00
CTESTFLAGS = -Wall -Werror -Isrc/ -Itest/ -L./ -std=c++11 -lstdc++
# Set compile mode to -g or -O3.
MODE_LOG = ""
mode ?= release
ifeq ($(mode), debug)
CFLAGS += -g
CTESTFLAGS += -g
MODE_LOG = "Building in \033[1;31mdebug\033[0m mode"
else
CFLAGS += -O3
CTESTFLAGS += -O3
MODE_LOG = "Building in \033[0;32mrelease\033[0m mode ('make mode=debug' for debug mode)"
endif
GMAKE = make mode=$(mode)
2014-12-15 18:32:46 +01:00
all: library
2015-12-23 16:14:39 +01:00
library: $(TARGET)
2015-12-23 16:14:39 +01:00
$(TARGET): $(LIBOBJ)
2016-02-27 17:44:42 +01:00
$(CXX) $(LIBFLAGS) -o $(TARGET) $(LIBOBJ)
2014-12-15 18:32:46 +01:00
$(SRCPARSER)/flex_lexer.o: $(SRCPARSER)/flex_lexer.cpp $(SRCPARSER)/bison_parser.cpp
$(CXX) $(CFLAGS) -c -o $@ $< -Wno-sign-compare -Wno-unneeded-internal-declaration -Wno-deprecated-register
%.o: %.cpp $(PARSERCPP)
2016-02-27 17:44:42 +01:00
$(CXX) $(CFLAGS) -c -o $@ $<
$(SRCPARSER)/bison_parser.cpp: $(SRCPARSER)/bison_parser.y
$(GMAKE) -C $(SRCPARSER)/ bison_parser.cpp
$(SRCPARSER)/flex_lexer.cpp: $(SRCPARSER)/flex_lexer.l
$(GMAKE) -C $(SRCPARSER)/ flex_lexer.cpp
clean:
2015-12-23 16:14:39 +01:00
rm -f $(TARGET)
rm -rf $(BIN)
find $(SRC) -type f -name '*.o' -delete
$(GMAKE) -C benchmark/ clean
cleanparser:
$(GMAKE) -C $(SRCPARSER)/ clean
2015-12-23 17:00:41 +01:00
cleanall: clean cleanparser
2015-12-23 16:14:39 +01:00
install:
cp $(TARGET) $(INSTALL)/lib/$(TARGET)
rm -rf $(INSTALL)/include/hsql
2017-03-11 13:47:35 +01:00
cp -r src $(INSTALL)/include/hsql
find $(INSTALL)/include/hsql -not -name '*.h' -type f | xargs rm
#################
### Benchmark ###
#################
benchmark: library
$(GMAKE) -C benchmark/ clean run
2016-02-27 15:01:06 +01:00
build_benchmark: library
$(GMAKE) -C benchmark/ parser_benchmark
2015-12-23 16:14:39 +01:00
############
### Test ###
############
test: $(BIN)/sql_tests
2016-02-27 15:48:20 +01:00
bash test/test.sh
2015-12-23 16:14:39 +01:00
test_example:
$(GMAKE) -C example/
LD_LIBRARY_PATH=./ \
./example/example "SELECT * FROM students WHERE name = 'Max Mustermann';"
test_format:
@! astyle --options=astyle.options $(ALLLIB) | grep -q "Formatted"
@! astyle --options=astyle.options $(ALLTEST) | grep -q "Formatted"
2016-02-27 16:40:24 +01:00
2015-12-23 16:14:39 +01:00
$(BIN)/sql_tests: library
@mkdir -p $(BIN)/
$(CXX) $(CTESTFLAGS) $(TESTCPP) -o $(BIN)/sql_tests -lsqlparser
############
### Misc ###
############
format:
astyle --options=astyle.options $(ALLLIB)
astyle --options=astyle.options $(ALLTEST)
astyle --options=astyle.options $(EXAMPLESRC)
log_mode:
@echo $(MODE_LOG)