makefile.dist

来自「open source dhcp server client etc...」· DIST 代码 · 共 64 行

DIST
64
字号
# Makefile.dist## Copyright (c) 1996-1999 Internet Software Consortium.# Use is subject to license terms which appear in the file named# ISC-LICENSE that should have accompanied this file when you# received it.   If a file named ISC-LICENSE did not accompany this# file, or you are not sure the one you have is correct, you may# obtain an applicable copy of the license at:##             http://www.isc.org/isc-license-1.0.html. ## This file is part of the ISC DHCP distribution.   The documentation# associated with this file is listed in the file DOCUMENTATION,# included in the top-level directory of this release.## Support and other services are available for ISC products - see# http://www.isc.org for more information.#SUBDIRS=	common $(MINIRES) dst omapip server client relay dhcpctlall:	@for dir in ${SUBDIRS}; do \		echo "Making all in $$dir"; \		(cd $$dir; $(MAKE) all) || exit 1; \	 doneinstall:	@for dir in ${SUBDIRS}; do \		echo "Installing in $$dir"; \		(cd $$dir; $(MAKE) install) || exit 1; \	 donedepend:	@for dir in ${SUBDIRS}; do \		echo "Making dependencies in $$dir"; \		(cd $$dir; $(MAKE) depend) || exit 1; \	 doneclean:	@for dir in ${SUBDIRS}; do \		echo "Cleaning in $$dir"; \		(cd $$dir; $(MAKE) clean) || exit 1; \	 donerealclean:	@for dir in ${SUBDIRS}; do \		echo "Really cleaning in $$dir"; \		(cd $$dir; $(MAKE) realclean) || exit 1; \	 donedistclean:	@for dir in ${SUBDIRS}; do \		echo "Really, really cleaning in $$dir"; \		(cd $$dir; $(MAKE) distclean) || exit 1; \	 done	@rm -f Makefilelinks:	@for dir in ${SUBDIRS}; do \		echo "Making links in $$dir"; \		(cd $$dir; $(MAKE) links) || exit 1; \	 done

⌨️ 快捷键说明

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