makefile
来自「类PASCAL语言的编译器,LINUX环境的,我没试过是否正确.」· 代码 · 共 27 行
TXT
27 行
######################################################################### ## fpl - A shared library interpreting script langauge. ## Copyright (C) 1992-1998 FrexxWare ## Author: Daniel Stenberg ## ## This program is distributed in the hope that it will be useful, ## but WITHOUT ANY WARRANTY; without even the implied warranty of ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. ## ## Daniel Stenberg <Daniel.Stenberg@sth.frontec.se> ## #########################################################################all: @echo "no default action"tgz: @(dir=`pwd`;name=`basename $$dir`;echo Creates $$name.tar.gz; cd .. ; \ tar -cf $$name.tar `cat $$name/FILES | sed "s:^:$$name/:g"` ; \ gzip $$name.tar ; chmod a+r $$name.tar.gz ; mv $$name.tar.gz $$name/)clean: rm -f *~ cd src; make clean cd compile; make clean
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?