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

all: $(EXECUTEABLES)

acmetool.%: acmetool-v$(VERSION)-linux_%.tar.gz
	tar -xzf $< -O > $@

acmetool-v$(VERSION)-linux_%.tar.gz:
	wget -nc "https://github.com/hlandau/acme/releases/download/v$(VERSION)/$(shell echo $@ | sed s/i386/386/ | sed s/armhf/arm/)" -O $@

clean:
	rm -f acmetool.*
	rm -f acmetool-*.tar.gz