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