[config] fix compatibility behaviour of nobuild
[jhbuild.git] / buildbot / Makefile
blob5f79e5959611d1600e89ccc043b2a700a02950b0
1 # -*- makefile -*-
3 # This is a simple makefile which lives in a buildmaster/buildslave
4 # directory (next to the buildbot.tac file). It allows you to start/stop the
5 # master or slave by doing 'make start' or 'make stop'.
7 # The 'reconfig' target will tell a buildmaster to reload its config file.
9 start:
10 twistd --no_save -y buildbot.tac --nodaemon
12 stop:
13 kill `cat twistd.pid`
15 reconfig:
16 kill -HUP `cat twistd.pid`
18 log:
19 tail -f twistd.log