Revision: | 1.11 |
Committed: | Wed Oct 1 13:47:56 2003 UTC (21 years, 1 month ago) by tdb |
Branch: | MAIN |
Changes since 1.10: | +8 -2 lines |
Log Message: | Add manual pages in docbook XML format. The Makefile will convert them in to manual pages at distribution time, so the archive will ship with manual pages, not XML. |
# | Content |
---|---|
1 | # Makefile for libstatgrab/docs |
2 | # http://www.i-scream.org/ |
3 | # $Id: Makefile.am,v 1.10 2003/08/25 12:41:38 tdb Exp $ |
4 | |
5 | DOCS = network.txt diskio.txt load_average.txt process_stats.txt os_stats.txt vm_stats.txt user_list.txt cpu.txt page_stat.txt |
6 | |
7 | man_MANS = get_load_stats.3 get_general_stats.3 |
8 | |
9 | docdir = $(datadir)/doc/libstatgrab |
10 | |
11 | doc_DATA = $(DOCS) |
12 | EXTRA_DIST = $(DOCS) $(man_MANS) |
13 | |
14 | %.3: %.xml |
15 | docbook2man -N --symlinks $< |
16 |