はないMakefileの構文が、私はこの問題を得たのはなぜmakeで "ターゲットを作るルールがありません"の原因?
target: require_files
cmd...
ありますか?
Makefileの
$
MXMLC = /opt/flex/bin/mxmlc
MXMLC_RELEASE = $(MXMLC) -debug=false -compiler.optimize=true
release: bin-release/Wrapper.swf, bin-release/Application.swf
bin-release/Application.swf: src/**/*.as, lib/*.swc
$(MXMLC_RELEASE) -output bin-release/Application.swf src/Application.as
@@-rm ../server/public/game/Application.swf
$(CP) bin-release/Application.swf ../server/public/game/Application.swf
bin-release/Wrapper.swf: src/*.as, src/engine/**/*.as, lib/*.swc
$(MXMLC_RELEASE) -output bin-release/Wrapper.swf src/Wrapper.as
@@-rm ../server/public/game/Wrapper.swf
$(CP) bin-release/Wrapper.swf ../server/public/game/Wrapper.swf
:ビン・リリースを作る/ Application.swf
〜/ワークスペース/プロジェクト/ SRC /フラッシュ[2] 19時20分メイク:*ませルール ターゲット
src/constant/*.as,', needed by
bin-release/Application.swf 'を作成します。 停止します。
I見つかった別の質問、SRC/**/*。一致していないだろうとのsrc/A/B/Cだけ一致させることができます/ d.as、SRC/A /全ての.asファイルを一致させるどのような方法をb.as 'find' –
使用' $(シェル...) 'の下に.... – sehe