19 lines
185 B
Makefile
19 lines
185 B
Makefile
|
|
TARGET = tests
|
|
|
|
all: $(TARGET)
|
|
|
|
runtests:
|
|
./runtests.sh
|
|
|
|
runshellcheck:
|
|
./runshellcheck.sh
|
|
|
|
tests:
|
|
./wvtestrun $(MAKE) runshellcheck
|
|
|
|
clean::
|
|
rm -f *~ t/*~
|
|
rm -rf composure_test
|
|
|