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

📄 makedep

📁 字体缩放显示
💻
字号:
# makedep## This shell script creates a dependency file necessary for some compilers# on the Windows 32-bit platform.## If you run this script under non-Windows operating systems, expect# warnings that `windows.h' can't be found.## Copyright 1996-2002 by# David Turner, Robert Wilhelm, and Werner Lemberg.## This file is part of the FreeType project, and may only be used, modified,# and distributed under the terms of the FreeType project license,# LICENSE.TXT.  By continuing to use, modify, or distribute this file you# indicate that you have read the license and understand and accept it# fully.echo "\# This file is part of the FreeType project.# Automatically generated, but you can customize to fit your needs.# However, changes will be erased if not made in \`makedep'...## This dependency file to be used with various Windows compilers# has been generated automatically with the script \`makedep' on# `date +%Y-%m-%d`." > depend.win(cd ../.. gcc -MM -I../lib/arch/win32 -I../lib -I../lib/extend -I. *.c | \   sed -e "s/\.o:/.obj:/" -e "s:/:\\\\:g") >> depend.winecho "!ifndef __MAKE__" >> depend.win(cd ../.. gcc -MM -I../lib/arch/win32 -I../lib -I../lib/extend -I. \     arch/win32/*.c | \   sed -e "s/^\(.*\)\.o:/arch\\\\win32\\\\\1.obj:/" \       -e "s:/:\\\\:g") >> depend.winecho "!endif" >> depend.win# eof

⌨️ 快捷键说明

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