From 0491c3655a70cf3102a435ae5911cb9ebb94c958 Mon Sep 17 00:00:00 2001 From: jacekpoz Date: Mon, 29 Apr 2024 16:17:10 +0200 Subject: [PATCH] fix make by removing vars in test makefile --- test/Makefile | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/test/Makefile b/test/Makefile index 4e44143..b3e289b 100644 --- a/test/Makefile +++ b/test/Makefile @@ -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)