forked from kaasops/config-reloader
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Makefile
34 lines (26 loc) · 898 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
BIN := ${PWD}/bin
export PATH := ${BIN}:${PATH}
LICENSEI := ${BIN}/licensei
LICENSEI_VERSION = v0.4.0
${BIN}:
mkdir -p ${BIN}
.PHONY: license-check
license-check: ${LICENSEI} ## Run license check
${LICENSEI} check
${LICENSEI} header
.PHONY: license-cache
license-cache: ${LICENSEI} ## Generate license cache
${LICENSEI} cache
.PHONY: check
check: license-cache license-check
${LICENSEI}: ${LICENSEI}_${LICENSEI_VERSION} | ${BIN}
ln -sf $(notdir $<) $@
${LICENSEI}_${LICENSEI_VERSION}: IMPORT_PATH := github.com/goph/licensei/cmd/licensei
${LICENSEI}_${LICENSEI_VERSION}: VERSION := ${LICENSEI_VERSION}
${LICENSEI}_${LICENSEI_VERSION}: | ${BIN}
${go_install_binary}
define go_install_binary
find ${BIN} -name '$(notdir ${IMPORT_PATH})_*' -exec rm {} +
GOBIN=${BIN} go install ${IMPORT_PATH}@${VERSION}
mv ${BIN}/$(notdir ${IMPORT_PATH}) ${BIN}/$(notdir ${IMPORT_PATH})_${VERSION}
endef