【发布时间】:2015-01-05 11:19:51
【问题描述】:
Make 是我在是否理解它之间来回切换的技术之一。
这当然是我知道我做错了什么的一个例子,因为 Make 的开发是为了减少这些任务的重复性。
all: 24.1 24.2 24.3
24.1:
evm install emacs-24.1-bin || true
emacs --version
emacs --batch -L . -l ert -l test/tests.el -f ert-run-tests-batch-and-exit
24.2:
evm install emacs-24.2-bin || true
emacs --version
emacs --batch -L . -l ert -l test/tests.el -f ert-run-tests-batch-and-exit
24.3:
evm install emacs-24.3-bin || true
emacs --version
emacs --batch -L . -l ert -l test/tests.el -f ert-run-tests-batch-and-exit
如何编辑此 Makefile 以仅布置一次测试序列但能够针对多个版本进行测试?
【问题讨论】:
标签: makefile