fix make by removing vars in test makefile

This commit is contained in:
jacekpoz 2024-04-29 16:17:10 +02:00
parent 086e841110
commit 0491c3655a
Signed by: poz
SSH key fingerprint: SHA256:JyLeVWE4bF3tDnFeUpUaJsPsNlJyBldDGV/dIKSLyN8

View file

@ -1,9 +1,5 @@
CXX = g++
CXXFLAGS = -std=c++20 -O3 -Wall -Wextra -Wpedantic
LDFLAGS =
INCLUDE = include test
CXXFLAGS += $(addprefix -I, $(INCLUDE))
INCLUDE_TEST = include test
CXXFLAGS += $(addprefix -I, $(INCLUDE_TEST))
TEST = test
BIN_TEST = $(BIN)/$(TEST)