📄 makefile.dist
字号:
# 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -