aboutsummaryrefslogtreecommitdiffstats
path: root/yocto-worker/Makefile
blob: e90cc2f13267a325d989288a5689b9d83a768d31 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# This is a simple makefile which lives in a buildmaster
# directory (next to the buildbot.tac file). It allows you to start/stop the
# master by doing 'make start' or 'make stop'.

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

start:
	twistd --no_save -y buildbot.tac

stop:
	if [ -e twistd.pid ]; \
	then kill `cat twistd.pid`; \
	else echo "Nothing to stop."; \
	fi

reconfig:
	if [ -e twistd.pid ]; \
	then kill -HUP `cat twistd.pid`; \
	else echo "Nothing to reconfig."; \
	fi

log:
	if [ -e twistd.log ]; \
	then tail -f twistd.log; \
	else echo "Nothing to tail."; \
	fi