mktools/Makefile
William Petit 6e9cf40c66
All checks were successful
Cadoles/mktools/pipeline/pr-master This commit looks good
ci: add jenkins pipeline
2023-08-23 12:02:27 -06:00

23 lines
427 B
Makefile

.PHONY: all
all: test build
.PHONY: test
test: tools/checkmake/bin/checkmake
tools/checkmake/bin/checkmake Makefile
.PHONY: build
build:
.PHONY: release
release: changelog
$(MAKE) MKT_GITEA_RELEASE_ATTACHMENTS="CHANGELOG.md" mkt-gitea-release
.PHONY: clean
clean:
rm -rf tools
.PHONY: changelog
changelog:
$(MAKE) MKT_GIT_CHGLOG_PROJECT_ORG=Cadoles MKT_GIT_CHGLOG_PROJECT_NAME=mktools mkt-changelog
include tasks/*.mk