有沒有辦法告訴automake不要解釋Makefile.am的一部分?有沒有辦法告訴automake不要解釋automakefile的一部分?
具體來說,我試圖在Makefile.am中對Makefile進行編碼。由於other people已經注意到,這是行不通的,因爲automake解釋了endif構造。
是否有任何方法在Makefile.am文件中轉義或引用字符串,以便automake將它們逐字複製到目標Makefile中?具體來說,我不希望它解釋ENDIF在類似:
ifeq "$(SOMEVAR)" ""
SOMEVAR="default_value"
endif
這是迄今爲止我見過的最好的解決方案 –