RM = rm
CURL = curl –location
UNZIP = unzip
MV = mv

FILE = jasmify.jar
VER := 0.7.0
DIR := .

all:

download:
$(eval _zipfile = can.zip)
$(eval _filename = classfileanalyzer)
(CURL) http://www.classfileanalyzer.javaseiten.de/downloads/classfileanalyzer-bin-(subst .,-,$(VER)).zip
> $(_zipfile)
$(UNZIP) -j $(_zipfile) (_filename)/(_filename).jar
$(RM) $(_zipfile)
$(MV) $(_filename).jar (DIR)/(FILE)

clean:
$(RM) $(FILE)