📄 makefile.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 + -