added ternary trie implementation
This commit is contained in:
parent
d7f95f0fbf
commit
0b97f124c5
7 changed files with 698 additions and 3 deletions
9
Makefile
9
Makefile
|
|
@ -20,6 +20,15 @@ $(BUILD_DIR)/Debug/Makefile: CMakeLists.txt
|
|||
build: cmake
|
||||
@ make -C '$(BUILD_DIR)/Debug'
|
||||
|
||||
.PHONY: cmake-release
|
||||
cmake-release: $(BUILD_DIR)/Release/Makefile
|
||||
$(BUILD_DIR)/Release/Makefile: CMakeLists.txt
|
||||
@ cmake -B'$(BUILD_DIR)/Release' -DCMAKE_BUILD_TYPE=Release .
|
||||
|
||||
.PHONY: prod
|
||||
prod: cmake-release
|
||||
@ make -C '$(BUILD_DIR)/Release'
|
||||
|
||||
.PHONY: run
|
||||
run: build
|
||||
@ ./build/Debug/lander
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue