From a8e9ed95e6475a030d19817e8cbe8577bfbb1600 Mon Sep 17 00:00:00 2001 From: David Allen Date: Sun, 24 Aug 2025 20:32:31 -0600 Subject: [PATCH] chore: updated makefile --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index b6784ec..c1e7a87 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ # Unless set otherwise, the container runtime is Docker DOCKER ?= docker -prog ?= configurator +prog ?= makeshift git_tag := $(shell git describe --abbrev=0 --tags --always) sources := main.go $(wildcard cmd/*.go) plugin_source_prefix := pkg/generator/plugins @@ -42,12 +42,12 @@ lib/%.so: pkg/generator/plugins/%/*.go docs: go doc github.com/OpenCHAMI/cmd - go doc github.com/OpenCHAMI/pkg/configurator + go doc github.com/OpenCHAMI/pkg/${prog} # remove executable and all built plugins .PHONY: clean clean: - rm -f configurator + rm -f ${prog} rm -f lib/* # run all of the unit tests