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@
|
2007-10-18 23:33:06 -07:00
|
|
|
datarootdir = @datarootdir@
|
2002-04-30 20:58:18 +00:00
|
|
|
|
|
|
|
INSTALL = @INSTALL@
|
|
|
|
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
|
|
|
INSTALL_DATA = @INSTALL_DATA@
|
|
|
|
|
|
|
|
PERL = perl
|
|
|
|
MAKEINFO = makeinfo
|
2002-05-04 14:16:20 +00:00
|
|
|
TEXI2DVI = texi2dvi
|
2008-06-19 11:39:23 -07:00
|
|
|
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
|
|
|
|
2008-07-14 02:45:57 -04:00
|
|
|
SRCS = nasmdoc.src inslist.src changes.src
|
2008-06-16 21:19:34 -07:00
|
|
|
OUT = info html nasmdoc.txt nasmdoc.ps nasmdoc.pdf
|
2002-04-30 20:58:18 +00:00
|
|
|
|
2006-02-04 00:23:30 +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
|
|
|
|
|
2008-01-20 21:50:02 -08:00
|
|
|
inslist.src: inslist.pl ../insns.dat
|
|
|
|
$(PERL) $(srcdir)/inslist.pl
|
|
|
|
|
2008-06-11 18:38:15 -07:00
|
|
|
.PHONY: html
|
|
|
|
html: html/nasmdoc0.html
|
|
|
|
|
2008-07-14 02:45:57 -04:00
|
|
|
html/nasmdoc0.html: $(SRCS) rdsrc.pl
|
2002-04-30 20:58:18 +00:00
|
|
|
mkdir -p html
|
2008-06-11 18:38:15 -07:00
|
|
|
$(PERL) $(srcdir)/rdsrc.pl html < $<
|
2002-04-30 20:58:18 +00:00
|
|
|
mv -f *.html html
|
|
|
|
|
2008-07-14 02:45:57 -04:00
|
|
|
nasmdoc.dip: $(SRCS) rdsrc.pl
|
2008-06-11 18:38:15 -07:00
|
|
|
$(PERL) $(srcdir)/rdsrc.pl dip < $<
|
|
|
|
|
2008-07-14 02:45:57 -04:00
|
|
|
nasmdoc.texi: $(SRCS) rdsrc.pl
|
2008-06-11 18:38:15 -07:00
|
|
|
$(PERL) $(srcdir)/rdsrc.pl texi < $<
|
|
|
|
|
2008-07-14 02:45:57 -04:00
|
|
|
nasmdoc.txt: $(SRCS) rdsrc.pl
|
2008-06-11 18:38:15 -07:00
|
|
|
$(PERL) $(srcdir)/rdsrc.pl txt < $<
|
2002-05-04 14:16:20 +00:00
|
|
|
|
2006-02-04 00:23:30 +00:00
|
|
|
nasmdoc.ps: nasmdoc.dip nasmlogo.eps $(srcdir)/../version genpsdriver.pl \
|
2002-05-18 20:36:25 +00:00
|
|
|
genps.pl psfonts.ph pswidth.ph head.ps
|
2002-05-18 22:17:28 +00:00
|
|
|
$(PERL) $(srcdir)/genpsdriver.pl > nasmdoc.ps
|
2002-05-14 21:21:24 +00:00
|
|
|
|
2002-05-16 18:15:31 +00:00
|
|
|
nasmdoc.pdf: nasmdoc.ps
|
2008-06-19 11:39:23 -07:00
|
|
|
$(ACRODIST) -n -q --nosecurity -o $@ $< || \
|
|
|
|
$(PS2PDF) $< $@ || \
|
|
|
|
$(PSTOPDF) $< -o $@
|
2002-05-14 21:21:24 +00:00
|
|
|
|
2008-06-11 18:38:15 -07:00
|
|
|
.PHONY: info
|
|
|
|
info: info/nasm.info
|
2002-05-04 14:16:20 +00:00
|
|
|
|
|
|
|
info/nasm.info: nasmdoc.texi
|
2002-04-30 20:58:18 +00:00
|
|
|
mkdir -p info
|
|
|
|
$(MAKEINFO) $<
|
|
|
|
mv -f *.info *.info-* info
|
|
|
|
|
2002-05-04 14:16:20 +00:00
|
|
|
# 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
|
2002-05-04 14:16:20 +00:00
|
|
|
nasmdoc.ipf: nasmdoc.texi
|
2008-06-19 11:47:13 -07:00
|
|
|
$(TEXI2IPF) $< >$@
|
2002-04-30 21:00:33 +00:00
|
|
|
|
|
|
|
nasm.inf: nasmdoc.ipf
|
2008-06-19 11:47:13 -07:00
|
|
|
$(IPFC) -i -s $< $@
|
2002-04-30 21:00:33 +00:00
|
|
|
|
2002-04-30 20:58:18 +00:00
|
|
|
clean:
|
2002-05-14 06:05:06 +00:00
|
|
|
-rm -f *.rtf *.hpj *.texi *.gid *.ipf *.dip
|
2002-05-04 14:16:20 +00:00
|
|
|
-rm -f *.aux *.cp *.fn *.ky *.pg *.log *.toc *.tp *.vr
|
2010-06-25 13:38:49 -07:00
|
|
|
-rm -f inslist.src
|
2002-04-30 20:58:18 +00:00
|
|
|
|
|
|
|
spotless: clean
|
2002-05-14 21:21:24 +00:00
|
|
|
-rm -rf html info
|
2008-01-20 21:50:02 -08:00
|
|
|
-rm -f *.hlp nasmdoc.txt *.inf *.pdf *.dvi
|
2010-06-25 13:38:49 -07:00
|
|
|
-rm -f nasmdoc*.ps
|
2002-04-30 20:58:18 +00:00
|
|
|
|
|
|
|
install: all
|
2009-07-05 18:48:50 -07:00
|
|
|
mkdir -p $(INSTALLROOT)$(infodir)
|
2002-04-30 20:58:18 +00:00
|
|
|
$(INSTALL_DATA) info/* $(INSTALLROOT)$(infodir)
|
|
|
|
mkdir -p $(INSTALLROOT)$(docdir)/html
|
|
|
|
$(INSTALL_DATA) html/* $(INSTALLROOT)$(docdir)/html
|
2002-05-04 14:16:20 +00:00
|
|
|
$(INSTALL_DATA) nasmdoc.ps nasmdoc.pdf nasmdoc.txt $(INSTALLROOT)$(docdir)
|