我正在尝试创建一个配置脚本来构建源代码、测试和文档。文件夹如下:
- 源代码
- 测试
我要生成的文档来自源代码,由 Doxygen 处理。
在运行配置脚本后,我希望能够执行以下操作:
$ make // to compile the source
$ make test // to compile the tests
$ make run_test <test_name> // to run an specific test
$ make doc // to run Doxygen and generate the documentation in a folder called "doc"
我需要什么来执行这些?我正在研究 Autotools 文档,但我还没有找到执行此操作的方法。
谢谢