makefile.am

来自「Affix - Bluetooth Protocol Stack for Lin」· AM 代码 · 共 46 行

AM
46
字号
##  $Id: Makefile.am,v 1.24 2003/03/18 10:14:24 kds Exp $##  process this file with automake to produce Makefile.in#affixconfdir = $(sysconfdir)/affixpppupdir = $(sysconfdir)/ppp/ip-up.dpppdowndir = $(sysconfdir)/ppp/ip-down.daffixconf_DATA = btsrv.conf affix.conf device.mapaffixconf_SCRIPTS = ppp_server serial btsrv-gui affixpppup_SCRIPTS = masq-uppppdown_SCRIPTS = masq-down EXTRA_DIST = affix.rc.deb affix.rc.rh $(affixconf_DATA) $(affixconf_SCRIPTS) $(pppup_SCRIPTS) $(pppdown_SCRIPTS)install-exec-local:	if [ -f /etc/debian_version ] ; then \		cp affix.rc.deb $(DESTDIR)/etc/init.d/affix || true; \		if [ "$(DESTDIR)" = "" ] ; then \			update-rc.d affix defaults; \		fi \	fi	if [ -f /etc/redhat-release ] ; then \		cp affix.rc.rh $(DESTDIR)/etc/rc.d/init.d/affix || true; \		if [ "$(DESTDIR)" = "" ] ; then \			chkconfig --add affix; \		fi \	fiuninstall-local:	if [ -f /etc/debian_version ] ; then \		if [ "$(DESTDIR)" = "" ] ; then \			update-rc.d -f affix remove; \		fi; \		rm $(DESTDIR)/etc/init.d/affix; \	fi	if [ -f /etc/redhat-release ] ; then \		if [ "$(DESTDIR)" = "" ] ; then \			chkconfig --del affix; \		fi; \		rm $(DESTDIR)/etc/rc.d/init.d/affix; \	fi

⌨️ 快捷键说明

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