各サブディレクトリに Makefile を作成せずに、automake を使用して HTML ファイル、スタイルシート、および画像のディレクトリ ツリーをインストールするにはどうすればよいですか?
最上位ディレクトリで次を使用する
htmldir = $(docdir)/foo/html
html_DATA = \
stylesheets/foo.css \
images/foo.jpg \
index.html \
about/index.html \
faq/index.html
EXTRA_DIST = $(html_DATA)
install
が呼び出される前にサブディレクトリが作成されていないため、失敗します。