如何將文件名列表轉換爲makefile中變量名稱集?如何將文件名列表轉換爲makefile中變量名稱集
例如,我的文件名列表和設置的變量:
filename := file1 file2 file3 ...
file1 := opt1
file2 := opt2
file3 := opt3
...
...
,現在我要創建一套新的變量:
file1_opt := $(file1)
file2_opt := $(file2)
file3_opt := $(file3)
...
...
怎麼辦呢Makefile中?
對於bash這很簡單:
for name in $(filenames)
do
$($(subst .,_,$(subst /,_,name)))_opt := $($(subst .,_,$(subst /,_,name)))
done
但是,如何讓它在生成文件?
實施例:
./module/files.mk
C_SRC := a_file.c b_file.c
CPP_SRC := c_file.cpp d_file.cpp
a_file_c := -O2
b_file_c := -DN_DEBUG
./Makefile
....
SRCDIR := module
include makef.mk
....
$(C_OBJ) : $(OBJDIR)/%.o : %.c
$(CC) -c $(C_FLAGS) $(C_FLAGS_$(subst .,_,$(subst /,_,$<))) $< -o [email protected]
....
./makef.mk
SAVE_C_SRC := $(C_SRC)
SAVE_CPP_SRC := $(CPP_SRC)
C_SRC :=
CPP_SRC :=
include $(SRCDIR)/files.mk
MK_DIRS += $(OBJDIR)/$(SRCDIR)
----[ problem site ]----
# this work for bash but not for make
for name in $(C_SRC)
do
C_FLAGS_$(SRCDIR)_$($(subst .,_,$(subst /,_,name))) := $($(subst .,_,$(subst /,_,name)))
$($(subst .,_,$(subst /,_,name))) :=
done
----[ end of problem site ]----
SAVE_C_SRC += $(C_SRC:%=$(SRCDIR)/%)
SAVE_CPP_SRC += $(CPP_SRC:%=$(SRCDIR)/%)
C_SRC := $(SAVE_C_SRC)
CPP_SRC := $(SAVE_CPP_SRC)
伊利亞安德
您不能使用腳本來創建基於此列表的新的makefile嗎? –