pluotsorbet/Makefile

31 строка
508 B
Makefile
Исходник Обычный вид История

2014-09-14 07:12:04 +04:00
.PHONY: all test tests java certs clean
2014-09-14 07:12:04 +04:00
all: java tests
test: all
2014-09-17 00:04:23 +04:00
rm -f test.log
2014-08-06 03:13:11 +04:00
killall python Python || true
2014-08-05 06:54:58 +04:00
python -m SimpleHTTPServer &
python tests/echoServer.py &
casperjs --engine=slimerjs test `pwd`/tests/automation.js > test.log
killall python Python || true
python dumplog.py
2014-09-14 07:09:31 +04:00
if grep -q FAIL test.log; \
2014-09-11 21:50:58 +04:00
then false; \
else true; \
fi
2014-07-16 03:04:32 +04:00
tests:
make -C tests
2014-07-16 03:49:00 +04:00
java:
make -C java
2014-07-18 19:35:06 +04:00
2014-08-29 00:36:41 +04:00
certs:
make -C certs
2014-07-13 01:07:11 +04:00
clean:
rm -f j2me.js `find . -name "*~"`
2014-08-26 05:34:31 +04:00
make -C tests clean
make -C java clean