diff options
author | Ossama Othman <ossama-othman@users.noreply.github.com> | 1999-10-30 00:59:04 +0000 |
---|---|---|
committer | Ossama Othman <ossama-othman@users.noreply.github.com> | 1999-10-30 00:59:04 +0000 |
commit | ec40bc5acdffaff660edb03ab02d280c018e18e7 (patch) | |
tree | 59178ead6930b52aafa0b62f68b27b84e3bb2ee8 /man | |
parent | c8fca4e86576baab59d0242088a7e5d680a69107 (diff) | |
download | ATCD-ec40bc5acdffaff660edb03ab02d280c018e18e7.tar.gz |
ChangeLogTag:Fri Oct 29 19:53:59 1999 Ossama Othman <othman@cs.wustl.edu>
Diffstat (limited to 'man')
-rw-r--r-- | man/Makefile.am | 23 | ||||
-rw-r--r-- | man/html/Makefile.am | 32 | ||||
-rw-r--r-- | man/man3/Makefile.am | 25 |
3 files changed, 80 insertions, 0 deletions
diff --git a/man/Makefile.am b/man/Makefile.am new file mode 100644 index 00000000000..4e50750ba10 --- /dev/null +++ b/man/Makefile.am @@ -0,0 +1,23 @@ +##---------------------------------------------------------------------------- +## $Id$ +## +## Makefile.am for the ACE documentation directory +##---------------------------------------------------------------------------- + +## +## Process this file with automake to create Makefile.in +## + +## The number in AUTOMAKE_OPTIONS is the minimum required version automake +## needed to process this file. +AUTOMAKE_OPTIONS = 1.4 + +## Build man3 before html directory! +SUBDIRS = man3 html + +EXTRA_DIST = acewindex.html + +## FIXME! +acewindex.html: + touch $@ +## $(top_srcdir)/bin/html-windex < windex > acewindex.html diff --git a/man/html/Makefile.am b/man/html/Makefile.am new file mode 100644 index 00000000000..5db99050486 --- /dev/null +++ b/man/html/Makefile.am @@ -0,0 +1,32 @@ +##---------------------------------------------------------------------------- +## $Id$ +## +## Makefile.am for the ACE `html' man page directory +##---------------------------------------------------------------------------- + +## +## Process this file with automake to create Makefile.in +## + +## The number in AUTOMAKE_OPTIONS is the minimum required version automake +## needed to process this file. +AUTOMAKE_OPTIONS = 1.4 + +htmldir = $(pkgdatadir)/html +html_DATA := \ + $(shell (for p in $(top_builddir)/man/man3/*.3; \ + do basename $$p | sed -e 's/\.3$$/\.html/'; done)) + +DISTCLEANFILES = $(html_DATA) + +EXTRA_DIST = $(html_DATA) + +## Only add rule to create ACE.html since it more efficient to make +## man2html create all of the html man pages in one shot. +$(html_DATA): + @ACE_ROOT=$(top_srcdir) $(top_srcdir)/bin/man2html \ + $(top_builddir)/man/man3/`echo $@ | sed -e 's/\.html$$/\.3/'` \ + > /dev/null + +all-local: + echo ACE HTML man pages have been built.
\ No newline at end of file diff --git a/man/man3/Makefile.am b/man/man3/Makefile.am new file mode 100644 index 00000000000..b8ae49f4d2c --- /dev/null +++ b/man/man3/Makefile.am @@ -0,0 +1,25 @@ +##---------------------------------------------------------------------------- +## $Id$ +## +## Makefile.am for the ACE `man3' man page directory +##---------------------------------------------------------------------------- + +## +## Process this file with automake to create Makefile.in +## + +## The number in AUTOMAKE_OPTIONS is the minimum required version automake +## needed to process this file. +AUTOMAKE_OPTIONS = 1.4 + +## Exclude non-ACE man pages +## The distribution must be first be bootstrapped by running +## `bin/bootstrap' from the top-level source directory before the +## following will work. +man_MANS := $(shell echo ACE*.3) + +MAINTAINERCLEANFILES = $(man_MANS) + +EXTRA_DIST = $(man_MANS) + + |