mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2024-12-23 14:52:26 +00:00
17 lines
293 B
Makefile
17 lines
293 B
Makefile
|
|
.PHONY: run-queen run-client test
|
|
|
|
run-queen:
|
|
cd queen-basedir && PYTHONPATH=.. twistd -noy ../queen.tac
|
|
|
|
run-client:
|
|
cd client-basedir && PYTHONPATH=.. twistd -noy ../client.tac
|
|
|
|
test:
|
|
trial allmydata
|
|
|
|
create_dirs:
|
|
mkdir queen-basedir
|
|
mkdir client-basedir
|
|
mkdir client-basedir/storage
|