frappy/Makefile
Alexander Lenz 77b01404d9 Improve doc.
Change-Id: I0b25fd1c645a47084fb7fda1bbb7d41a2d10dcbb
2017-09-11 17:35:03 +02:00

25 lines
514 B
Makefile

.PHONY: all doc clean test
all: clean doc
clean:
@echo "cleaning pyc files"
@find . -name '*.pyc' -delete
@echo "cleaning html tree"
@rm -rf html
@mkdir html
doc:
$(MAKE) -C doc html
demo:
@bin/secop-server -q demo &
@bin/secop-server -q test &
@bin/secop-server -q cryo &
@bin/secop-gui localhost:10767 localhost:10768 localhost:10769
@ps aux|grep [s]ecop-server|awk '{print $$2}'|xargs kill
test:
#@pytest -v --lf -l --tb=auto --setup-plan test/
@pytest -v --lf -l --tb=long --setup-show test/