我正在尝试创建用于构建源代码,测试和文档的配置脚本。文件夹如下:
我想要生成的文档来自源代码,由Doxygen处理。
我希望能够在运行configure脚本后执行以下操作:
$ 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文档,但我还没有找到执行此操作的方法。
由于