Build documents now.
authormdw <mdw>
Thu, 22 Feb 2001 09:07:29 +0000 (09:07 +0000)
committermdw <mdw>
Thu, 22 Feb 2001 09:07:29 +0000 (09:07 +0000)
Makefile.am
configure.in
doc/Makefile.am [new file with mode: 0644]

index ec11186..8a3f72a 100644 (file)
@@ -1,6 +1,6 @@
 ## -*-makefile-*-
 ##
-## $Id: Makefile.am,v 1.3 2001/02/16 21:42:02 mdw Exp $
+## $Id: Makefile.am,v 1.4 2001/02/22 09:07:28 mdw Exp $
 ##
 ## Makefile for TrIPE
 ##
@@ -28,6 +28,9 @@
 ##----- Revision history ----------------------------------------------------
 ##
 ## $Log: Makefile.am,v $
+## Revision 1.4  2001/02/22 09:07:28  mdw
+## Build documents now.
+##
 ## Revision 1.3  2001/02/16 21:42:02  mdw
 ## Only link the server against Catacomb.
 ##
@@ -39,6 +42,7 @@
 ##
 
 AUTOMAKE_OPTIONS = foreign
+SUBDIRS = doc
 
 tun = @tun@
 
index 45f52aa..341b11e 100644 (file)
@@ -1,6 +1,6 @@
 dnl -*-fundamental-*-
 dnl
-dnl $Id: configure.in,v 1.3 2001/02/16 21:24:12 mdw Exp $
+dnl $Id: configure.in,v 1.4 2001/02/22 09:07:28 mdw Exp $
 dnl
 dnl Configuration script for TrIPE
 dnl
@@ -28,6 +28,9 @@ dnl Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 dnl ----- Revision history --------------------------------------------------
 dnl
 dnl $Log: configure.in,v $
+dnl Revision 1.4  2001/02/22 09:07:28  mdw
+dnl Build documents now.
+dnl
 dnl Revision 1.3  2001/02/16 21:24:12  mdw
 dnl Don't link the client against Catacomb.
 dnl
@@ -65,6 +68,6 @@ AC_SUBST(tun)
 mdw_MLIB(2.0.0pre4)
 mdw_CATACOMB(2.0.0pre8, [CFLAGS="$CFLAGS $CATACOMB_CFLAGS"])
 
-AC_OUTPUT(Makefile)
+AC_OUTPUT(Makefile doc/Makefile)
 
 dnl ----- That's all, folks -------------------------------------------------
diff --git a/doc/Makefile.am b/doc/Makefile.am
new file mode 100644 (file)
index 0000000..6828905
--- /dev/null
@@ -0,0 +1,39 @@
+## -*-makefile-*-
+##
+## $Id: Makefile.am,v 1.1 2001/02/22 09:07:29 mdw Exp $
+##
+## Makefile for TrIPE documentation
+##
+## (c) 2001 Straylight/Edgeware
+##
+
+##----- Licensing notice ----------------------------------------------------
+##
+## This file is part of Trivial IP Encryption (TrIPE).
+##
+## TrIPE is free software; you can redistribute it and/or modify
+## it under the terms of the GNU General Public License as published by
+## the Free Software Foundation; either version 2 of the License, or
+## (at your option) any later version.
+## 
+## TrIPE is distributed in the hope that it will be useful,
+## but WITHOUT ANY WARRANTY; without even the implied warranty of
+## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+## GNU General Public License for more details.
+## 
+## You should have received a copy of the GNU General Public License
+## along with TrIPE; if not, write to the Free Software Foundation,
+## Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+
+##----- Revision history ----------------------------------------------------
+##
+## $Log: Makefile.am,v $
+## Revision 1.1  2001/02/22 09:07:29  mdw
+## Build documents now.
+##
+
+AUTOMAKE_OPTIONS = foreign
+
+man_MANS = tripe.8 tripectl.1 tripe-admin.5
+
+##----- That's all, folks ---------------------------------------------------