-
Notifications
You must be signed in to change notification settings - Fork 24
/
mingit.make
45 lines (30 loc) · 1.1 KB
/
mingit.make
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
35
36
37
38
39
40
41
42
43
44
# -*-Makefile-*-
PACKAGE = git
ALL_PLATFORMS=mingw
MINGIT_BRANCH_FILEIFIED=$(subst /,--,$(MINGIT_BRANCH))
MINGIT_LOCAL_BRANCH=$(MINGIT_BRANCH_FILEIFIED)-repo.or.cz-git-mingw.git
default: all
PLATFORMS = mingw
include gub.make
include compilers.make
GPKG_OPTIONS=--branch git=$(MINGIT_LOCAL_BRANCH)
GUB_OPTIONS=\
--branch git=$(MINGIT_BRANCH):$(MINGIT_LOCAL_BRANCH)
INSTALLER_BUILDER_OPTIONS=\
--branch=git=$(MINGIT_LOCAL_BRANCH)\
--version-db=versiondb/git.versions \
all: $(PLATFORMS)
download: download-mingit
download-mingit:
$(MAKE) -f mingit.make update-versions
mingw:
$(call BUILD,$@,git)
update-versions:
python gub/versiondb.py --no-sources --url http://lilypond.org/git --dbfile versiondb/git.versions --download --platforms="$(PLATFORMS)"
LAST_GIT=$(shell ls -1 -t uploads/git*.exe|head -1)
TAG=gub-release-mingw-git-$(subst uploads/git-,,$(LAST_GIT))
upload:
rsync --delay-updates -v --progress $(LAST_GIT) [email protected]:www/git/binaries/mingw/
$(MAKE) -f mingit.make update-versions
git tag $(TAG)
git push ssh+git://git.sv.gnu.org/srv/git/lilypond.git $(TAG):refs/tags/$(TAG)