diff options
Diffstat (limited to 'doc/Makefile')
-rw-r--r-- | doc/Makefile | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/doc/Makefile b/doc/Makefile new file mode 100644 index 0000000..572ca57 --- /dev/null +++ b/doc/Makefile @@ -0,0 +1,28 @@ +# +# Makefile for NASM documentation + +SRCS = nasmdoc.src +OUT = nasm.info + +all: $(OUT) + +.SUFFIXES: .src .texi .info .ps .rtf .hpj .ps .txt .pl + +# Consider html, txt and src output a side effect +.src.texi: + -mkdir html + perl ./rdsrc.pl < $< + mv -f *.html html + +nasm.info: nasmdoc.texi + -mkdir info + makeinfo $< + mv -f *.info *.info-* info + +clean: + -rm -f *.rtf *.hpj *.texi + +spotless: clean + -rm -rf html info *.hlp *.txt *.ps + + |