makefile.am
来自「pic 模拟程序!面向对象」· AM 代码 · 共 38 行
AM
38 行
## ############################################################################## File: OOPIC Makefile.am#### Purpose: Run automake at the top level to make Makefile.in in all## subdirectories.#### ########################################################################## PIC_DIRS = otools physics advisor xg SUBDIRS = $(PIC_DIRS) config all-local: -rm -f xoopic -/bin/ln -s xg/xoopic xoopicdepend: for i in $(PIC_DIRS) ; do \ (cd $$i; \ echo "Making depend in $$i"; \ make depend) \ donecrufix: linuxfixlinuxfix: for i in $(PIC_DIRS) ; do \ ( cd $$i; \ echo "fixing the Makefile in $$i"; \ mv Makefile Makefile.old ;\ cat Makefile.old | sed 's/ cru / /' > Makefile);\ mv Makefile.in Makefile.in.old ;\ cat Makefile.in.old | sed 's/ cru / /' > Makefile.in) \ doneautomake: ./config/automake.sh
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?