mirror of
https://github.com/netwide-assembler/nasm.git
synced 2025-03-31 18:20:22 +08:00
Make the errors for missing man page tools comprehensible
A lot of confusion was had due to missing asciidoc... Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
This commit is contained in:
parent
29e2f74a58
commit
a9397830f7
10
Makefile.in
10
Makefile.in
@ -49,7 +49,7 @@ ifeq ($(TRACE),1)
|
||||
CFLAGS += -DNASM_TRACE
|
||||
endif
|
||||
|
||||
.SUFFIXES: .c .i .s .$(O) .1 .txt
|
||||
.SUFFIXES: .c .i .s .$(O) .1 .txt .xml
|
||||
|
||||
.PHONY: all doc rdf install clean distclean cleaner spotless install_rdf test
|
||||
.PHONY: install_doc everything install_everything strip perlreq dist tags TAGS
|
||||
@ -63,9 +63,11 @@ endif
|
||||
.c.i:
|
||||
$(CC) -E $(ALL_CFLAGS) -o $@ $<
|
||||
|
||||
.txt.1:
|
||||
$(ASCIIDOC) -b docbook -d manpage -o $(patsubst %.1,%.xml,$@) $<
|
||||
$(XMLTO) man --skip-validation $(patsubst %.1,%.xml,$@) 2>/dev/null
|
||||
.txt.xml:
|
||||
$(ASCIIDOC) -b docbook -d manpage -o $@ $<
|
||||
|
||||
.xml.1:
|
||||
$(XMLTO) man --skip-validation $< 2>/dev/null
|
||||
|
||||
|
||||
#-- Begin File Lists --#
|
||||
|
@ -67,9 +67,9 @@ PA_ADD_CFLAGS([-std=c99])
|
||||
PA_ADD_CFLAGS([-pedantic])
|
||||
|
||||
dnl Look for programs...
|
||||
AC_CHECK_PROGS(NROFF, nroff, echo)
|
||||
AC_CHECK_PROGS(ASCIIDOC, asciidoc, echo)
|
||||
AC_CHECK_PROGS(XMLTO, xmlto, echo)
|
||||
AC_CHECK_PROGS(NROFF, nroff, false)
|
||||
AC_CHECK_PROGS(ASCIIDOC, asciidoc, false)
|
||||
AC_CHECK_PROGS(XMLTO, xmlto, false)
|
||||
AC_CHECK_PROGS(ACRODIST, acrodist, false)
|
||||
AC_CHECK_PROGS(PS2PDF, ps2pdf, false)
|
||||
AC_CHECK_PROGS(PSTOPDF, pstopdf, false)
|
||||
|
Loading…
x
Reference in New Issue
Block a user