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

📄 makefile

📁 a full 3D simulation of electromagnetic waves with efficient absorbing boundary a full 3D simulation
💻
字号:
# Makefile for my fdtd-codes#CompilerCC 				= gcc#standard flags (this should work on any machine)COMP_FLAGS			= -Wall -O -ansi# high optimization falgs (for x86 only, Pentium based)#COMP_FLAGS 			= -Wall -O3 -ansi -mcpu=i686 -march=i686#debug flags#COMP_FLAGS 			= -Wall  -DDEBUG -gLINK_FLAGS			= -lm#Make sectionradarFDTD:	./src/radarFDTD.c ./src/ComponentUpdate.c ./src/ComputeBoundarySigma.c Makefile ./src/ReadConfig.c ./src/PMLFunctions.c ./src/Order.c ./src/Whirl.c ./src/units.c ./src/Order.c ./src/output.c	cd src \	&& $(CC) -o radarFDTD $(COMP_FLAGS) radarFDTD.c $(LINK_FLAGS) \	&& cp radarFDTD ../ \	&& cd ..clean:	-rm -f *~ coretest:		./radarFDTD test/docs:			cd doc \	&& perl manual \	&& rm pod2html* \	&& cd ..all:	radarFDTD docs

⌨️ 快捷键说明

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