chore: updated makefile

This commit is contained in:
David Allen 2025-08-24 20:32:31 -06:00
parent 68d905067f
commit a8e9ed95e6
Signed by: towk
GPG key ID: 0430CDBE22619155

View file

@ -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