makefile
来自「Linux下网络相关工具源代码。」· 代码 · 共 63 行
TXT
63 行
## man/Makefile man/ Makefile for the net-tools Package## NET-TOOLS A collection of programs that form the base set of the# NET-3 Networking Distribution for the LINUX operating# system.## Version: Makefile 0.02 (1998-07-01)## Authors: Bernd Eckenfels <net-tools@lina.inka.de># Arnaldo Carvalhoa de Melo <acme@conectiva.com.br># Copyright 1995-1996 Bernd Eckebnfels, Germany# 1998 Arnaldo Carvalho de Melo, Brazil##960322 {0.01} Bernd Eckenfels: creation to make main Makefile cleaner#980701 {0.02} Arnaldo C. Melo: making the main Makefile *more* cleaner :)## This program is free software; you can redistribute it# and/or modify it under the terms of the GNU General# Public License as published by the Free Software# Foundation; either version 2 of the License, or (at# your option) any later version.#INSTALL=install-include ../config.makeifeq ($(I18N),1)LANGS=`ls -d * | grep -v Makefile`elseLANGS=en_USendifall:clean: rm -f DEADJOE *~ *.orig rm -f */DEADJOE */*~ */*.origclobber: cleaninstall: LANGS=$(LANGS) ; \ for LANG in $$LANGS; do \ cd $$LANG; \ for SECTION in 1 5 8; do \ if [ "$$LANG" = "en_US" ] ; then \ MAN_DIR=${BASEDIR}/usr/man/man$$SECTION; \ else \ MAN_DIR=${BASEDIR}/usr/man/$$LANG/man$$SECTION; \ fi ; \ CMDS=`ls *.$$SECTION`; \ [ -z "$$CMDS" ] && continue; \ $(INSTALL) -d -m 755 $$MAN_DIR; \ for CMD in $$CMDS; do \ $(INSTALL) -m 644 $$CMD $$MAN_DIR; \ done; \ done; \ cd ..; \ done# End of man/Makefile.
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?