I want to use a makefile to run makeinfo. Bun need a good way to pass makeinfo options such as --split=chapter and others the user wants to apply.
How can I handle this? I want to avoid passing using a variable like this make -f myfile.mk opt=--split=chapter Rather, I want a direct setting like thisn make -f myfile.mk -- --html --split=chapter And be able to pass all option to the command part of a makefile rule.
