diff options
author | H. Peter Anvin <hpa@zytor.com> | 2002-04-30 20:57:59 +0000 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2002-04-30 20:57:59 +0000 |
commit | ef7468f4ec05f23e8d866493593d7c1f07df5e03 (patch) | |
tree | ce3d68c654cf05d24ff2c0a6b3b4fcccca13719b /doc | |
parent | 620515ab4e66b45f9440cf04a1fa61869275170f (diff) | |
download | nasm-ef7468f4ec05f23e8d866493593d7c1f07df5e03.tar.gz nasm-ef7468f4ec05f23e8d866493593d7c1f07df5e03.tar.bz2 nasm-ef7468f4ec05f23e8d866493593d7c1f07df5e03.zip |
NASM 0.98p7
Diffstat (limited to 'doc')
-rw-r--r-- | doc/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/doc/Makefile b/doc/Makefile index 572ca57..c510405 100644 --- a/doc/Makefile +++ b/doc/Makefile @@ -1,5 +1,6 @@ # -# Makefile for NASM documentation +# UNIX Makefile for NASM documentation +# SRCS = nasmdoc.src OUT = nasm.info @@ -10,12 +11,12 @@ all: $(OUT) # Consider html, txt and src output a side effect .src.texi: - -mkdir html + mkdir -p html perl ./rdsrc.pl < $< mv -f *.html html nasm.info: nasmdoc.texi - -mkdir info + mkdir -p info makeinfo $< mv -f *.info *.info-* info |