-
Notifications
You must be signed in to change notification settings - Fork 8
/
Makefile
36 lines (25 loc) · 875 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
35
36
PREFIX ?= /usr
ICON_THEMES ?= $(patsubst %/theme.xml,%,$(wildcard ./*/theme.xml))
all:
build: clean
bash build.sh
clean:
-rm -rf build/
install:
mkdir -p $(DESTDIR)$(PREFIX)/share/filezilla/resources
cp -R $(ICON_THEMES) $(DESTDIR)$(PREFIX)/share/filezilla/resources
uninstall:
-rm -rf $(foreach icon_theme,$(ICON_THEMES),$(DESTDIR)$(PREFIX)/share/filezilla/resources/$(icon_theme))
dist: _get_version
git archive --format=zip -o $(notdir $(CURDIR))-$(VERSION).zip master -- $(ICON_THEMES)
_get_version:
$(eval VERSION := $(shell git show -s --format=%cd --date=format:%Y%m%d HEAD))
@echo $(VERSION)
release: _get_version
git tag -f $(VERSION)
git push origin --tags
git push origin
undo_release: _get_version
-git tag -d $(VERSION)
-git push --delete origin $(VERSION)
.PHONY: all build clean dist install uninstall _get_version release undo_release