标签: makefile autotools automake
我正在使用autotools构建一些我希望只有在更改标题时才能安装标头的软件包。
我看到install.sh有一个标志-C只能在不同的情况下安装,但我如何在autotools中设置该标志?
install.sh
-C
在我的Makefile.am中,如果有帮助,我提供nobase_libhello_include_HEADERS = file1.h file2.h。
答案 0 :(得分:5)
在调用configure:
configure
./configure INSTALL="/usr/bin/install -C"