summaryrefslogtreecommitdiff
path: root/Makefile
blob: c3ba75f5f1dfc5d247b41e7d640cd753f272bb47 (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:
	./run-tests.sh

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