Slightly improved Makefile

This commit is contained in:
Kevin Dorner 2020-11-13 22:03:56 +01:00 committed by root
parent a8e01f2048
commit 7108e02180

View File

@ -8,7 +8,7 @@ SOURCE = https://github.com/git-for-windows/git/releases/download/${UPSTREAM_TAG
CHECKSUM = 9ab49d93166d430514b0aaf6dda3fdc6b37e2fe1d0df8ecc04403cd2be40e78b
## Download Link and Checksums can be found on https://github.com/git-for-windows/git/releases/
all: clean setversion install
all: clean install
install: setversion
@[ -d "./data/" ] || mkdir ./data/
@ -28,5 +28,5 @@ setversion:
@sed -i "s/^packageVersion: [0-9]\{1,3\}\.[0-9]\{1,3\}$$/packageVersion: ${PKG_SUB_RELEASE}/" ./control
package:
@echo "MEEP!"
.PHONY: install clean setversion package
.PHONY: all install clean setversion package