Sync with upstream release 47.0.

Enable self-tests during build.
Add example test to be run by Taskotron.
This commit is contained in:
Merlin Mathesius 2017-03-27 14:56:27 -05:00
commit 9f6f5dcf7f
7 changed files with 80 additions and 4 deletions

View file

@ -0,0 +1,14 @@
.PHONY: all install download clean
BUILT_FILES=
FILES=runtest.sh Makefile
run: $(FILES) build
./runtest.sh
build: $(BUILT_FILES)
chmod a+x ./runtest.sh
clean:
rm -f *~ $(BUILT_FILES)