From 96b0b6d2e6a78bb7fa4a96aa7fbbfebcaef682a0 Mon Sep 17 00:00:00 2001 From: dgelessus <dgelessus@users.noreply.github.com> Date: Mon, 16 Jan 2023 18:18:34 +0100 Subject: [PATCH] Name clean tasks consistently --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 4a0a8b7..50562ad 100644 --- a/Makefile +++ b/Makefile @@ -31,7 +31,7 @@ methods := \ random_forest \ softmax_regression \ sparse_coding -clean_methods := $(methods:%=clean-%) +clean_methods := $(methods:%=clean_%) # Must come first so that it's the default target .PHONY: all @@ -51,7 +51,7 @@ clean_helper: .PHONY: $(clean_methods) $(clean_methods): - $(MAKE) -C src/methods/$(@:clean-%=%) clean + $(MAKE) -C src/methods/$(@:clean_%=%) clean .PHONY: clean clean: clean_helper $(clean_methods) -- GitLab