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

📄 msvc.mak

📁 巴特沃斯、切比雪夫I和椭圆滤波器设计的源程序!非常难得! 简洁的C语言编写
💻 MAK
字号:
#
# Microsoft Visual C++ makefile for ellf.exe
#
# Open a command line DOS window.
# Set directory paths by running the Microsoft batch file vcvars32.bat
# located at \program files\microsoft visual studio\vc98\bin\vcvars32.bat
# Then build the program with nmake.exe by the command
#   nmake -f msvc.mak
# To run the examples, type
#   ellf < ellf.que > temp.tmp
# and compare the results in temp.tmp with ellf.ans


ellf.exe: ellf.obj ellik.obj ellpj.obj ellpk.obj cmplx.obj const.obj polevl.obj mtherr.obj
	link ellf ellik ellpj ellpk cmplx polevl const mtherr

ellf.obj: ellf.c
	cl /c ellf.c

ellik.obj: ellik.c
	cl /c ellik.c

ellpj.obj: ellpj.c
	cl /c ellpj.c

ellpk.obj: ellpk.c mconf.h
	cl /c ellpk.c

cmplx.obj: cmplx.c mconf.h
	cl /c cmplx.c

polevl.obj: polevl.c mconf.h
	cl /c polevl.c

mtherr.obj: mtherr.c mconf.h
	cl /c mtherr.c

const.obj: const.c mconf.h
	cl /c const.c

⌨️ 快捷键说明

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