refactor: don't compile trie as separate library
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
Jef Roosens 2022-11-27 20:20:09 +01:00
parent 55474b485f
commit cc8cfaeace
Signed by: Jef Roosens
GPG key ID: B75D4F293C7052DB
7 changed files with 65 additions and 107 deletions

View file

@ -1,10 +1,11 @@
# =====CONFIG=====
BUILD_DIR := ./build
SRC_DIR := ./src
INCLUDE_DIR := ./include
TEST_DIR := test
CORES != nproc
SRCS := $(shell find '$(SRC_DIR)' -iname '*.cpp')
SRCS := $(shell find '$(SRC_DIR)' '$(INCLUDE_DIR)' \( -iname '*.cpp' -or -iname '*.c' -or -iname '*.h' \))
# =====RECIPES=====