nasm/doc/Makefile.in

102 lines
2.2 KiB
Makefile
Raw Normal View History

2002-04-30 20:58:18 +00:00
#
# UNIX Makefile for NASM documentation
#
srcdir = @srcdir@
VPATH = @srcdir@
prefix = @prefix@
exec_prefix = @exec_prefix@
bindir = @bindir@
mandir = @mandir@
docdir = $(prefix)/doc/nasm
infodir = @infodir@
datarootdir = @datarootdir@
2002-04-30 20:58:18 +00:00
INSTALL = @INSTALL@
INSTALL_PROGRAM = @INSTALL_PROGRAM@
INSTALL_DATA = @INSTALL_DATA@
PERL = perl
MAKEINFO = makeinfo
TEXI2DVI = texi2dvi
TEXI2IPF = texi2ipf
IPFC = ipfc
ACRODIST = @ACRODIST@ # Acrobat Distiller
PSTOPDF = @PSTOPDF@ # BSD/MacOS X utility
PS2PDF = @PS2PDF@ # Part of GhostScript
2002-04-30 20:58:18 +00:00
SRCS = nasmdoc.src
2008-06-17 04:19:34 +00:00
OUT = info html nasmdoc.txt nasmdoc.ps nasmdoc.pdf
2002-04-30 20:58:18 +00:00
# exports
export srcdir
export PERL
2002-04-30 20:58:18 +00:00
all: $(OUT)
2002-04-30 21:00:33 +00:00
os2: nasm.inf
inslist.src: inslist.pl ../insns.dat
$(PERL) $(srcdir)/inslist.pl
.PHONY: html
html: html/nasmdoc0.html
html/nasmdoc0.html: nasmdoc.src rdsrc.pl inslist.src
2002-04-30 20:58:18 +00:00
mkdir -p html
$(PERL) $(srcdir)/rdsrc.pl html < $<
2002-04-30 20:58:18 +00:00
mv -f *.html html
nasmdoc.dip: nasmdoc.src rdsrc.pl inslist.src
$(PERL) $(srcdir)/rdsrc.pl dip < $<
nasmdoc.texi: nasmdoc.src rdsrc.pl inslist.src
$(PERL) $(srcdir)/rdsrc.pl texi < $<
nasmdoc.txt: nasmdoc.src rdsrc.pl inslist.src
$(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
2002-05-14 21:21:24 +00:00
nasmdoc.pdf: nasmdoc.ps
$(ACRODIST) -n -q --nosecurity -o $@ $< || \
$(PS2PDF) $< $@ || \
$(PSTOPDF) $< -o $@
2002-05-14 21:21:24 +00:00
.PHONY: info
info: info/nasm.info
info/nasm.info: nasmdoc.texi
2002-04-30 20:58:18 +00:00
mkdir -p info
$(MAKEINFO) $<
mv -f *.info *.info-* info
# DVI output from texinfo (optional)
nasmdoc.dvi: nasmdoc.texi
$(TEXI2DVI) nasmdoc.texi
2002-04-30 21:00:33 +00:00
# Rules for building an OS/2 book
nasmdoc.ipf: nasmdoc.texi
2002-04-30 21:00:33 +00:00
texi2ipf $< >$@
nasm.inf: nasmdoc.ipf
ipfc -i -s $< $@
2002-04-30 20:58:18 +00:00
clean:
-rm -f *.rtf *.hpj *.texi *.gid *.ipf *.dip
-rm -f *.aux *.cp *.fn *.ky *.pg *.log *.toc *.tp *.vr
2002-04-30 20:58:18 +00:00
spotless: clean
2002-05-14 21:21:24 +00:00
-rm -rf html info
-rm -f *.hlp nasmdoc.txt *.inf *.pdf *.dvi
-rm -f nasmdoc*.ps inslist.src
2002-04-30 20:58:18 +00:00
install: all
$(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)