2015-12-23 16:01:08 +01:00
|
|
|
# directories
|
|
|
|
BIN = bin
|
|
|
|
SRC = src
|
|
|
|
SRCPARSER = src/parser
|
2014-12-15 18:32:46 +01:00
|
|
|
|
2015-12-23 16:01:08 +01:00
|
|
|
# files
|
|
|
|
PARSERFILES = $(SRCPARSER)/bison_parser.cpp $(SRCPARSER)/flex_lexer.cpp
|
2016-01-16 12:36:45 +01:00
|
|
|
LIBCPP = $(shell find $(SRC) -name '*.cpp' -not -path "$(SRCPARSER)/*") $(SRCPARSER)/bison_parser.cpp $(SRCPARSER)/flex_lexer.cpp
|
2015-12-23 16:01:08 +01:00
|
|
|
LIBOBJ = $(LIBCPP:%.cpp=%.o)
|
2017-02-10 21:41:34 +01:00
|
|
|
TESTCPP = $(shell find test/ -name '*.cpp')
|
2015-08-28 13:46:07 +02:00
|
|
|
|
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)/*")
|
2017-03-07 02:01:00 +01:00
|
|
|
ALLTEST = $(shell find test/ -name '*.cpp') $(shell find test/ -name '*.h')
|
2016-02-27 15:01:06 +01:00
|
|
|
|
2015-12-23 16:01:08 +01:00
|
|
|
# compile & link flages
|
2017-02-10 21:41:34 +01:00
|
|
|
CFLAGS = -std=c++11 -Wall -fPIC -g
|
2015-12-23 16:01:08 +01:00
|
|
|
LIBFLAGS = -shared
|
|
|
|
TARGET = libsqlparser.so
|
2016-01-16 12:36:45 +01:00
|
|
|
INSTALL = /usr/local
|
2014-12-15 18:32:46 +01:00
|
|
|
|
2017-02-10 21:41:34 +01:00
|
|
|
CTESTFLAGS = -Wall -Isrc/ -Itest/ -L./ -std=c++11 -lstdc++ -g
|
2014-12-15 18:32:46 +01:00
|
|
|
|
2015-12-23 16:01:08 +01:00
|
|
|
all: library
|
2015-08-28 13:46:07 +02:00
|
|
|
|
2015-12-23 16:14:39 +01:00
|
|
|
library: $(TARGET)
|
2015-08-28 13:46:07 +02:00
|
|
|
|
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
|
|
|
|
|
|
|
|
2015-12-23 16:01:08 +01:00
|
|
|
%.o: %.cpp $(PARSERFILES)
|
2016-02-27 17:44:42 +01:00
|
|
|
$(CXX) $(CFLAGS) -c -o $@ $<
|
2015-12-23 16:01:08 +01:00
|
|
|
|
|
|
|
$(SRCPARSER)/bison_parser.cpp: parser
|
|
|
|
$(SRCPARSER)/flex_lexer.cpp: parser
|
|
|
|
|
|
|
|
parser:
|
|
|
|
make -C $(SRCPARSER)/
|
|
|
|
|
|
|
|
clean:
|
2015-12-23 16:14:39 +01:00
|
|
|
rm -f $(TARGET)
|
|
|
|
rm -rf $(BIN)
|
2015-12-23 16:01:08 +01:00
|
|
|
find $(SRC) -type f -name '*.o' -delete
|
|
|
|
|
|
|
|
cleanparser:
|
|
|
|
make -C $(SRCPARSER)/ clean
|
|
|
|
|
2015-12-23 17:00:41 +01:00
|
|
|
cleanall: clean cleanparser
|
2015-12-23 16:14:39 +01:00
|
|
|
|
2016-01-16 12:36:45 +01:00
|
|
|
install:
|
|
|
|
cp $(TARGET) $(INSTALL)/lib/$(TARGET)
|
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
|
|
|
|
|
2016-01-16 12:36:45 +01:00
|
|
|
|
2016-02-27 15:01:06 +01:00
|
|
|
format:
|
|
|
|
astyle --options=astyle.options $(ALLLIB)
|
|
|
|
astyle --options=astyle.options $(ALLTEST)
|
|
|
|
|
2017-03-06 18:30:35 +01:00
|
|
|
run_benchmark:
|
|
|
|
make -C benchmark/ clean run
|
|
|
|
|
2015-12-23 16:14:39 +01:00
|
|
|
############
|
|
|
|
### Test ###
|
|
|
|
############
|
|
|
|
|
2017-02-10 21:41:34 +01:00
|
|
|
test: $(BIN)/sql_tests
|
2016-02-27 15:48:20 +01:00
|
|
|
bash test/test.sh
|
2015-12-23 16:14:39 +01:00
|
|
|
|
2016-02-27 16:40:24 +01:00
|
|
|
# test whete
|
|
|
|
test_install:
|
|
|
|
make -C example/
|
|
|
|
./example/example "SELECT * FROM students WHERE name = 'Max Mustermann';"
|
|
|
|
|
2015-12-23 16:14:39 +01:00
|
|
|
$(BIN)/sql_tests: library
|
|
|
|
@mkdir -p $(BIN)/
|
2017-02-10 21:41:34 +01:00
|
|
|
$(CXX) $(CTESTFLAGS) $(TESTCPP) -o $(BIN)/sql_tests -lsqlparser
|