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

📄 makefile.in

📁 蒙特卡罗模拟光子成像C语言版,代码简洁专业
💻 IN
字号:
########################################################################
#
# Makefile for modeling programs, requires GNU make
#
########################################################################

# All the action happens in the subdirectories

# Libraries shared between the different tools (static linkage at compile
# time, build but no need to install anything)

LIBDIRS = libmccore libmcparse

# Program directories, main applications

PRGDIRS = tMCimg

# Utilities, useful but not the main show

UTLDIRS = cfg2inp

########################################################################

all:
	@for subdir in $(LIBDIRS) $(PRGDIRS) $(UTLDIRS); \
		do make -C $${subdir} all || break; \
		done

clean:
	@for subdir in $(LIBDIRS) $(PRGDIRS) $(UTLDIRS); \
		do make -C $${subdir} clean || break; \
		done

distclean:
	@for subdir in $(LIBDIRS) $(PRGDIRS) $(UTLDIRS); \
		do make -C $${subdir} distclean || break; \
		done
	-/bin/rm config.cache config.h config.log config.status Makefile

⌨️ 快捷键说明

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