File: Makefile

package info (click to toggle)
springlobby 0.274-1.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 13,960 kB
  • sloc: cpp: 76,749; ansic: 62,823; python: 468; sh: 289; xml: 52; makefile: 40; sed: 16
file content (19 lines) | stat: -rw-r--r-- 426 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# -*- makefile -*-

# This is a simple makefile which lives in a buildmaster/buildslave
# directory (next to the buildbot.tac file). It allows you to start/stop the
# master or slave by doing 'make start' or 'make stop'.

# The 'reconfig' target will tell a buildmaster to reload its config file.

start:
	buildbot start buildbot

stop:
	buildbot stop buildbot

reconfig:
	kill -HUP `cat twistd.pid`

log:
	tail -f twistd.log