How can I add a file to the EXTRA_DIST variable that has spaces?
I have tried
EXTRA_DIST = "res/Dragon\ Quest\ I\ &\ II\ (J).cht"
EXTRA_DIST = "res/Dragon\ Quest\ I\ \&\ II\ \(J\).cht"
EXTRA_DIST = "res/Dragon Quest I & II (J).cht"
EXTRA_DIST = res/Dragon\ Quest\ I\ &\ II\ (J).cht
I'm using automake 1.10 if it matters.
I would prefer to keep the filename intact, ampersands, spaces, and
parentheses included.
make[1]: *** No rule to make target `"res/Dragon Quest I & II (J).cht"',
needed by `distdir'. Stop.
and variants are what I get. I'm using gnu make 3.81.
Thanks,
--John Ratliff