chore: updated makefile
This commit is contained in:
parent
68d905067f
commit
a8e9ed95e6
1 changed files with 3 additions and 3 deletions
6
Makefile
6
Makefile
|
|
@ -1,7 +1,7 @@
|
||||||
# Unless set otherwise, the container runtime is Docker
|
# Unless set otherwise, the container runtime is Docker
|
||||||
DOCKER ?= docker
|
DOCKER ?= docker
|
||||||
|
|
||||||
prog ?= configurator
|
prog ?= makeshift
|
||||||
git_tag := $(shell git describe --abbrev=0 --tags --always)
|
git_tag := $(shell git describe --abbrev=0 --tags --always)
|
||||||
sources := main.go $(wildcard cmd/*.go)
|
sources := main.go $(wildcard cmd/*.go)
|
||||||
plugin_source_prefix := pkg/generator/plugins
|
plugin_source_prefix := pkg/generator/plugins
|
||||||
|
|
@ -42,12 +42,12 @@ lib/%.so: pkg/generator/plugins/%/*.go
|
||||||
|
|
||||||
docs:
|
docs:
|
||||||
go doc github.com/OpenCHAMI/cmd
|
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
|
# remove executable and all built plugins
|
||||||
.PHONY: clean
|
.PHONY: clean
|
||||||
clean:
|
clean:
|
||||||
rm -f configurator
|
rm -f ${prog}
|
||||||
rm -f lib/*
|
rm -f lib/*
|
||||||
|
|
||||||
# run all of the unit tests
|
# run all of the unit tests
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue