Check-in Number:
|
4283 | |
Date: |
2001-Aug-07 13:16:20 (local)
2001-Aug-07 11:16:20 (UTC) |
User: | simons |
Branch: | |
Comment: |
Added docs directory to the build system. |
Tickets: |
|
Inspections: |
|
Files: |
|
ossp-pkg/xds/docs/Makefile.in -> 1.1
*** /dev/null Sat Nov 23 06:24:09 2024
--- - Sat Nov 23 06:24:56 2024
***************
*** 0 ****
--- 1,25 ----
+ # Build libxds documentation.
+
+ LATEX = @LATEX@
+ POD2MAN = @POD2MAN@
+
+ .SUFFIXES:
+ .SUFFIXES: .tex .dvi .ps .pod .3
+
+ .tex.dvi:
+ latex \\nonstopmode\\input $<; \
+ while grep 'Rerun to' $*.log; do \
+ latex \\nonstopmode\\input $<; \
+ done
+
+ .dvi.ps:
+ dvips $< -o $@
+
+ .pod.3:
+ $(POD2MAN) --section=3 --center="XDS Library Programmer API " $< >$@
+
+ all: libxds.ps xds.3
+
+ clean distclean realclean:
+ rm -f libxds.aux libxds.dvi libxds.log libxds.ps libxds.toc
+ rm -f xds.3
|
|