summaryrefslogtreecommitdiff
path: root/doc/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'doc/Makefile')
-rw-r--r--doc/Makefile29
1 files changed, 0 insertions, 29 deletions
diff --git a/doc/Makefile b/doc/Makefile
deleted file mode 100644
index c5104052..00000000
--- a/doc/Makefile
+++ /dev/null
@@ -1,29 +0,0 @@
-#
-# UNIX 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 -p html
- perl ./rdsrc.pl < $<
- mv -f *.html html
-
-nasm.info: nasmdoc.texi
- mkdir -p info
- makeinfo $<
- mv -f *.info *.info-* info
-
-clean:
- -rm -f *.rtf *.hpj *.texi
-
-spotless: clean
- -rm -rf html info *.hlp *.txt *.ps
-
-