Check-in Number:
|
614 | |
Date: |
2001-Aug-07 13:19:13 (local)
2001-Aug-07 11:19:13 (UTC) |
User: | simons |
Branch: | |
Comment: |
clean and distclean targets will now be executed in docs and
regression-tests, too. |
Tickets: |
|
Inspections: |
|
Files: |
|
ossp-pkg/xds/Makefile.in 1.17 -> 1.18
--- Makefile.in 2001/08/07 11:16:19 1.17
+++ Makefile.in 2001/08/07 11:19:13 1.18
@@ -43,11 +43,13 @@
clean::
@(cd regression-tests && $(MAKE) $@)
+ @(cd docs && $(MAKE) $@)
rm -f $(OBJS)
rm -f libxds.a
distclean:: clean
@(cd regression-tests && $(MAKE) $@)
+ @(cd docs && $(MAKE) $@)
rm -f config.log config.status Makefile
realclean:: distclean
|
|
ossp-pkg/xds/docs/Makefile.in -> 1.2
*** /dev/null Sat Nov 23 02:07:32 2024
--- - Sat Nov 23 02:07:32 2024
***************
*** 0 ****
--- 1,28 ----
+ # 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:
+ rm -f libxds.aux libxds.dvi libxds.log libxds.ps libxds.toc
+ rm -f xds.3
+
+ distclean realclean:
+ rm -f Makefile
|
|