📄 makefile.in
字号:
#### This is the makefile for thresholdMon##SHELL = @SHELL@INSTALL = @INSTALL@prefix = @prefix@exec_prefix = @exec_prefix@bindir = @bindir@sysconfdir = @sysconfdir@crondir = @crondir@binaries = fillthresholds.py thresholdMon.pycronfiles = thresholdMonconffiles = fillthresholds.conf.PHONY: all install install-bin clean distclean install-cronall: install: install-bin install-cron install-confinstall-bin: @for file in $(binaries); do \ $(INSTALL) -v -D -m 755 $$file $(DESTDIR)$(bindir)/$$file || exit 1; \ doneinstall-conf: @for file in $(conffiles); do \ target=$(DESTDIR)$(sysconfdir)/$$file; \ if [ -f "$$target" ]; then \ echo Skipping installation of config file $$file; \ else \ $(INSTALL) -v -D -m 644 $$file $$target || exit 1; \ fi; \ doneinstall-cron: @for file in $(cronfiles); do \ $(INSTALL) -v -D -m 644 $$file.cron $(DESTDIR)$(crondir)/$$file || exit 1; \ doneclean: rm -f *~distclean: clean rm -f Makefile
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -