After getting the the latest sources from SVN (7628), I ran: $ autogen.sh $ ./configure --enable-debug=full $ make But building the man page fails: Making all in docs make[2]: Entering directory `/data/src/xfburn/docs' make[2]: *** No rule to make target `xfburn.1', needed by `all-am'. Stop.
You need to realize that autogen.sh already runs configure. So instead of running it again, just pass the arguments to autogen.sh: $ ./autogen.sh --enable-debug=full If you run configure again, you don't enable maintainer mode, and then no rule for creating the man page will get generated. That is to be expected.