summaryrefslogtreecommitdiff
path: root/Makefile
blob: 7d6197d06ec2f6a284208b3572331e75bddc9f82 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
VERSION := 0.1.1
DEBARCHS := amd64 i386 armhf
EXECUTEABLES := $(DEBARCHS:%=vanity.%)

all: $(EXECUTEABLES)

vanity.%: vanity_linux_%.gz
	cat $< | gunzip > $@

vanity_linux_%.gz:
	wget -nc "https://github.com/xiam/vanity/releases/download/v$(VERSION)/$(shell echo $@ | sed s/i386/386/ | sed s/armhf/arm/)" -O $@

clean:
	rm -f vanity.*
	rm -f vanity_linux_*.gz