From a71d75cb56749a6ceb36c1252aaa1962d69d573e Mon Sep 17 00:00:00 2001 From: dgelessus <dgelessus@users.noreply.github.com> Date: Mon, 16 Jan 2023 16:43:17 +0100 Subject: [PATCH] Remove top-level SPLFR_PATH variable The splfr variable can be specified directly and it will be passed on to the recursive make calls automatically. --- Makefile | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 64b0b70..7ce96ec 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,3 @@ -SPLFR_PATH=/usr/local/sicstus4.7.1/bin/splfr - methods := \ adaboost \ approx_kfn \ @@ -39,7 +37,7 @@ all: $(methods) .PHONY: methods $(methods): - $(MAKE) -C src/methods/$@ splfr=$(SPLFR_PATH) + $(MAKE) -C src/methods/$@ .PHONY: $(clean_methods) $(clean_methods): -- GitLab