Files
makeself/Makefile
T
Alexandr Reshetnikov a4f40a21ae move from bashunit to shunit2. refactoring tests. (#272)
* move from bashunit to shunit2

move run-tests.sh to test

simplify build.yml

* back shunit2 to submodule
2022-06-11 01:52:34 -07:00

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)