summaryrefslogtreecommitdiff
path: root/Makefile
blob: 46382a780419c4a7dc810cf2e3540a38ffc39cc3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
.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:
	./test/run-tests.sh

help:
	$(info Targets: all $(OUTPUT) clean test help)