Makefile 471 B

1234567891011121314151617181920
  1. # -*- makefile -*-
  2. # This is a simple makefile which lives in a buildmaster/buildslave
  3. # directory (next to the buildbot.tac file). It allows you to start/stop the
  4. # master or slave by doing 'make start' or 'make stop'.
  5. # The 'reconfig' target will tell a buildmaster to reload its config file.
  6. start:
  7. /opt/local/bin/twistd2.5 --no_save -y buildbot.tac
  8. stop:
  9. kill `cat twistd.pid`
  10. reconfig:
  11. kill -HUP `cat twistd.pid`
  12. log:
  13. tail -f twistd.log