diff options
Diffstat (limited to 'sys/doc/Makefile')
-rw-r--r-- | sys/doc/Makefile | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/sys/doc/Makefile b/sys/doc/Makefile new file mode 100644 index 0000000000000..78e3021c38317 --- /dev/null +++ b/sys/doc/Makefile @@ -0,0 +1,19 @@ +# $Id: Makefile,v 1.1 1994/03/30 20:36:32 wollman Exp $ +# +# Makefile for /sys/i386/doc +# This creates options.info and options.doc from options.texi, if the +# GNU makeinfo program is present, and fails miserably otherwise. +# + +all: options.info options.doc + +options.info: options.texi + makeinfo options.texi + +options.doc: options.texi + makeinfo -o options.doc+ --no-headers options.texi + sed '/^General Index/,$$d' < options.doc+ > options.doc + rm -f options.doc+ + +clean: + rm -f options.info options.doc options.doc+ |