1# -*- makefile -*- 2 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'. 6 7# The 'reconfig' target will tell a buildmaster to reload its config file. 8 9start: 10 /opt/local/bin/twistd2.5 --no_save -y buildbot.tac 11 12stop: 13 kill `cat twistd.pid` 14 15reconfig: 16 kill -HUP `cat twistd.pid` 17 18log: 19 tail -f twistd.log 20