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