makefile

来自「linux下开源浏览器WebKit的源码,市面上的很多商用浏览器都是移植自Web」· 代码 · 共 20 行

TXT
20
字号
# -*- 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:	twistd --no_save -y buildbot.tacstop:	kill `cat twistd.pid`reconfig:	kill -HUP `cat twistd.pid`log:	tail -f twistd.log

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?