File: Makefile

package info (click to toggle)
golang-github-linbit-golinstor 0.55.0-2
  • links: PTS, VCS
  • area: main
  • in suites: experimental, forky, sid
  • size: 480 kB
  • sloc: makefile: 11
file content (11 lines) | stat: -rw-r--r-- 234 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
all:
	echo "The only meaningful target is 'apiconsts'"

gitclean:
	git diff-index --quiet --exit-code HEAD

.PHONY: apiconsts
apiconsts: gitclean
	git submodule update --remote
	go generate
	git commit -am "apiconsts: submodule pull"