refactor: move locking responsibility to user
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
Jef Roosens 2022-12-07 11:28:20 +01:00
parent 2a373f3841
commit 088322c18f
Signed by: Jef Roosens
GPG key ID: B75D4F293C7052DB
6 changed files with 100 additions and 88 deletions

View file

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