# -*- 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
# slave by doing 'make start' or 'make stop'.

go:
	buildbot start /home/youse/buildbot/linbox-slave

stop:
	buildbot stop /home/youse/buildbot/linbox-slave

log:
	tail -f twistd.log

