📄 makefile.am
字号:
# Copyright (C) 1999-2000 Open Source Telecom Corporation.# # This file is free software; as a special exception the author gives# unlimited permission to copy and/or distribute it, with or without # modifications, as long as this notice is preserved.# # This program is distributed in the hope that it will be useful, but# WITHOUT ANY WARRANTY, to the extent permitted by law; without even the# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.AUTOMAKE_OPTIONS = no-dependencies dist-sharEXTRA_DIST = umd.sched umd.conf umd.conf.in pika.conf umd.init $(man_MANS)man_MANS = umd.conf.7install-exec-local: if test ! -f $(sysconfdir)/umd.sched ; then cp umd.sched $(sysconfdir) ; fi if test ! -f $(sysconfdir)/umd.conf ; then cp umd.conf $(sysconfdir) ; fi if test ! -f $(sysconfdir)/pika.conf ; then cp pika.conf $(sysconfdir) ; fi if test -d $(sysconfdir)/rc.d/init.d ; then cp -f umd.init $(sysconfdir)/rc.d/init.d/umd ; chmod +x $(sysconfdir)/rc.d/init.d/umd ; fi if test -d $(sysconfdir)/rc.d/rc3.d ; then cd $(sysconfdir)/rc.d/rc3.d ; ln -sf ../init.d/umd S99umd ; fi if test -d $(sysconfdir)/rc.d/rc4.d ; then cd $(sysconfdir)/rc.d/rc4.d ; ln -sf ../init.d/umd S99umd ; fi if test -d $(sysconfdir)/rc.d/rc5.d ; then cd $(sysconfdir)/rc.d/rc5.d ; ln -sf ../init.d/umd S99umd ; fi if test -d $(sysconfdir)/rc.d/rc0.d ; then cd $(sysconfdir)/rc.d/rc0.d ; ln -sf ../init.d/umd K00umd ; fi if test -d $(sysconfdir)/rc.d/rc1.d ; then cd $(sysconfdir)/rc.d/rc1.d ; ln -sf ../init.d/umd K00umd ; fi if test -d $(sysconfdir)/rc.d/rc2.d ; then cd $(sysconfdir)/rc.d/rc2.d ; ln -sf ../init.d/umd K00umd ; fi
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -