0

次のメイクファイルを実行しようとすると (以下の提案で更新):

# Build Directories
src_dir=src
obj_dir=obj
bin_dir=bin

cc=cl
cc_flags=

configs = dbg rel

# create the directory for the current target.
dir_guard=@mkdir -p $(@D)

# source files
src = MainTest.cpp

define build_template = 
# object files - replace .cpp on source files with .o and add the temp directory prefix
obj_$(1) = $$(addprefix $$(obj_dir)/$(1)/, $$(addsuffix .obj, $$(basename $$(src))))

testVar = "wooo"

# build TwoDee.exe from all of the object files.
$$(bin_dir)/$(1)/MainTest.exe : $$(obj_$(1))
    $$(dir_guard)
    $$(cc) -out:$$@ $$(obj_$(1)) -link

# build all of the object files in the temp directory from their corresponding cpp files.
$$(obj): $$(obj_dir)/$(1)/%.obj : $$(src_dir)/%.cpp
    $$(dir_guard)
    $$(cc) $$(cc_flags) -Fo$$(obj_dir)/$$(1) -c $$<
endef

$(foreach cfg_dir,$(configs),$(eval $(call build_template,$(cfg_dir))))

release: $(bin_dir)/rel/MainTest.exe

debug: cc_flags += -Yd -ZI
debug: $(bin_dir)/dbg/MainTest.exe

$(warning testVar $(testVar))

私が得るのは次のとおりです。

$ make
Makefile:41: testVar
make: *** No rule to make target `bin/rel/MainTest.exe', needed by `release'.  Stop.

出力から、testVar 変数が設定されていないことがわかります。最後の質問に基づいてこれらの変更を加えました: makefile のターゲット固有の変数が機能しないのはなぜですか?

4

1 に答える 1

1

Makeを混乱させるスペースがいくつかあります。これを試して:

$(foreach cfg_dir,$(configs),$(eval $(call build_template,$(cfg_dir))))

また、リンクする適切なオブジェクトを指定していることを確認してください。

    $$(cc) -out:$$@ $$(obj_$(1)) -link

また、@ Betaが以下のコメントで指摘しているように=、テンプレート定義構文では、GNUmake3.82以降が必要です。したがって、行からそれを省略した方がよいでしょう。

define build_template
于 2012-07-04T16:41:26.597 に答える