blob: c3ba75f5f1dfc5d247b41e7d640cd753f272bb47 [file]
.PHONY: all clean test help
VERSION := $(shell cat VERSION)
OUTPUT := makeself-$(VERSION).run
all: $(OUTPUT)
$(OUTPUT): makeself.sh makeself-header.sh VERSION
./make-release.sh
clean:
$(RM) makeself-*.run
test:
./run-tests.sh
help:
$(info Targets: all $(OUTPUT) clean test help)