Check-in Number:
|
613 | |
Date: |
2001-Aug-07 13:16:19 (local)
2001-Aug-07 11:16:19 (UTC) |
User: | simons |
Branch: | |
Comment: |
Added docs directory to the build system. |
Tickets: |
|
Inspections: |
|
Files: |
|
ossp-pkg/xds/Makefile.in 1.16 -> 1.17
--- Makefile.in 2001/08/02 17:24:49 1.16
+++ Makefile.in 2001/08/07 11:16:19 1.17
@@ -41,13 +41,10 @@
$(AR) cr $@ $(OBJS)
$(RANLIB) $@
-xds.3: xds.pod
- pod2man --section=3 --center="XDS Library Programmer API " xds.pod >xds.3
-
clean::
@(cd regression-tests && $(MAKE) $@)
rm -f $(OBJS)
- rm -f libxds.a test.o test xds.3
+ rm -f libxds.a
distclean:: clean
@(cd regression-tests && $(MAKE) $@)
|
|
ossp-pkg/xds/configure.ac 1.13 -> 1.14
--- configure.ac 2001/08/02 14:56:53 1.13
+++ configure.ac 2001/08/07 11:16:19 1.14
@@ -2,7 +2,7 @@
AC_INIT(libxds)
AC_PREREQ(2.52)
-AC_REVISION($Revision: 1.13 $)
+AC_REVISION($Revision: 1.14 $)
dnl Get rid of the lousy -g and -O defaults in CFLAGS.
dnl
@@ -12,6 +12,8 @@
dnl
AC_PROG_CC
AC_PROG_RANLIB
+AC_CHECK_PROG(LATEX, latex, latex, :)
+AC_CHECK_PROG(POD2MAN, pod2man, pod2man, :)
dnl Set special flags for gcc.
dnl
@@ -79,6 +81,6 @@
dnl Write results.
dnl
-AC_CONFIG_FILES(xds.h Makefile regression-tests/Makefile)
-AC_CONFIG_COMMANDS([default], [chmod -w xds.h Makefile regression-tests/Makefile])
+AC_CONFIG_FILES(xds.h Makefile regression-tests/Makefile docs/Makefile)
+AC_CONFIG_COMMANDS([default], [chmod -w xds.h Makefile regression-tests/Makefile docs/Makefile])
AC_OUTPUT
|
|