diff options
author | Anas Nashif <anas.nashif@intel.com> | 2012-05-15 22:27:48 +0100 |
---|---|---|
committer | Anas Nashif <anas.nashif@intel.com> | 2012-05-15 22:27:48 +0100 |
commit | b9fad1ab2ad3bd87bff05c4688c978d582ada438 (patch) | |
tree | 4a373f8dd867d20e67510de7cfe447a4b58c1a70 /doc/Makefile | |
parent | 65c26d26fb72cec0d43d199c72ed27513d17f4c9 (diff) | |
download | nasm-b9fad1ab2ad3bd87bff05c4688c978d582ada438.tar.gz nasm-b9fad1ab2ad3bd87bff05c4688c978d582ada438.tar.bz2 nasm-b9fad1ab2ad3bd87bff05c4688c978d582ada438.zip |
Upstream version 2.08rc7
Diffstat (limited to 'doc/Makefile')
-rw-r--r-- | doc/Makefile | 102 |
1 files changed, 102 insertions, 0 deletions
diff --git a/doc/Makefile b/doc/Makefile new file mode 100644 index 0000000..ae31229 --- /dev/null +++ b/doc/Makefile @@ -0,0 +1,102 @@ +# +# UNIX Makefile for NASM documentation +# + +srcdir = . + +prefix = /usr/local +exec_prefix = ${prefix} +bindir = ${exec_prefix}/bin +mandir = ${datarootdir}/man +docdir = $(prefix)/doc/nasm +infodir = ${datarootdir}/info +datarootdir = ${prefix}/share + +INSTALL = /usr/bin/install -c +INSTALL_PROGRAM = ${INSTALL} +INSTALL_DATA = ${INSTALL} -m 644 + +PERL = perl +MAKEINFO = makeinfo +TEXI2DVI = texi2dvi +TEXI2IPF = texi2ipf +IPFC = ipfc + +ACRODIST = false # Acrobat Distiller +PSTOPDF = false # BSD/MacOS X utility +PS2PDF = ps2pdf # Part of GhostScript + +SRCS = nasmdoc.src inslist.src changes.src +OUT = info html nasmdoc.txt nasmdoc.ps nasmdoc.pdf + +# exports +export srcdir +export PERL + +all: $(OUT) + +os2: nasm.inf + +inslist.src: inslist.pl ../insns.dat + $(PERL) $(srcdir)/inslist.pl + +.PHONY: html +html: html/nasmdoc0.html + +html/nasmdoc0.html: $(SRCS) rdsrc.pl + mkdir -p html + $(PERL) $(srcdir)/rdsrc.pl html < $< + mv -f *.html html + +nasmdoc.dip: $(SRCS) rdsrc.pl + $(PERL) $(srcdir)/rdsrc.pl dip < $< + +nasmdoc.texi: $(SRCS) rdsrc.pl + $(PERL) $(srcdir)/rdsrc.pl texi < $< + +nasmdoc.txt: $(SRCS) rdsrc.pl + $(PERL) $(srcdir)/rdsrc.pl txt < $< + +nasmdoc.ps: nasmdoc.dip nasmlogo.eps $(srcdir)/../version genpsdriver.pl \ + genps.pl psfonts.ph pswidth.ph head.ps + $(PERL) $(srcdir)/genpsdriver.pl > nasmdoc.ps + +nasmdoc.pdf: nasmdoc.ps + $(ACRODIST) -n -q --nosecurity -o $@ $< || \ + $(PS2PDF) $< $@ || \ + $(PSTOPDF) $< -o $@ + +.PHONY: info +info: info/nasm.info + +info/nasm.info: nasmdoc.texi + mkdir -p info + $(MAKEINFO) $< + mv -f *.info *.info-* info + +# DVI output from texinfo (optional) +nasmdoc.dvi: nasmdoc.texi + $(TEXI2DVI) nasmdoc.texi + +# Rules for building an OS/2 book +nasmdoc.ipf: nasmdoc.texi + $(TEXI2IPF) $< >$@ + +nasm.inf: nasmdoc.ipf + $(IPFC) -i -s $< $@ + +clean: + -rm -f *.rtf *.hpj *.texi *.gid *.ipf *.dip + -rm -f *.aux *.cp *.fn *.ky *.pg *.log *.toc *.tp *.vr + +spotless: clean + -rm -rf html info + -rm -f *.hlp nasmdoc.txt *.inf *.pdf *.dvi + -rm -f nasmdoc*.ps inslist.src + +install: all + mkdir -p $(INSTALLROOT)$(infodir) + $(INSTALL_DATA) info/* $(INSTALLROOT)$(infodir) + mkdir -p $(INSTALLROOT)$(docdir)/html + $(INSTALL_DATA) html/* $(INSTALLROOT)$(docdir)/html + $(INSTALL_DATA) nasmdoc.ps nasmdoc.pdf nasmdoc.txt $(INSTALLROOT)$(docdir) |