⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 build.mpw

📁 TIFF文件格式读取及生成的源代码
💻 MPW
字号:
# BUILD.mpw:  ##   Full build for Apple Macintosh Programmer's Workshop (MPW).##  This is an executable MPW script which creates various#  utilities, sets up the MPW makefiles and runs the builds.#  This script should be run at the top level TIFF directory with:##     directory :::#     :contrib:mac-mpw:BUILD.mpw##  NOTE: The full build requires that MPW have at least 6 MB#   allocated to it to compile the CCITT Fax codec tables. To#   deactivate CCITT compression edit the file :contrib:mac:libtiff.make#   first and follow the directions for disabling Fax decoding.##  All TIFF tools are built as MPW tools, executable from the#  MPW shell or other compatible tool server.##  Written by: Niles Ritter (ndr@tazboy.jpl.nasa.gov).#echo "############# Full Scratch Build for MPW #############"# Create the ascii->mpw translation tool; this is used to# convert standard ASCII files into ones using the special# MPW characters, which don't live comfortably in unix tar files.#echo "######## Creating ASCII->MPW translator ########"set contrib ':contrib:mac-mpw:'directory {contrib}createmake -tool mactrans mactrans.c > dev:nullmake -f mactrans.make | streamedit -e "/CSANELib/||/Math/||/ToolLibs/ del" > mactrans.bldexecute mactrans.bld  > dev:nulldelete -y mactrans.make mactrans.bld mactrans.c.o || set status 0directory :::   #An mpw trick for going up two levels# Create the top-level Makefile and run itecho "######## Creating Makefile ########"catenate {contrib}top.make | {contrib}mactrans > Makefileecho "######## Running Makefile ########"make  > build.mpwexecute build.mpwecho "############# MPW Build Complete #############"exit 0

⌨️ 快捷键说明

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