refactor: move locking responsibility to user
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
This commit is contained in:
parent
2a373f3841
commit
088322c18f
6 changed files with 100 additions and 88 deletions
6
Makefile
6
Makefile
|
|
@ -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=====
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue