mirror of
https://github.com/megastep/makeself.git
synced 2026-04-22 23:17:04 +08:00
a4f40a21ae
* move from bashunit to shunit2 move run-tests.sh to test simplify build.yml * back shunit2 to submodule
19 lines
295 B
Makefile
19 lines
295 B
Makefile
.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)
|