From: mdw Date: Thu, 22 Feb 2001 09:07:29 +0000 (+0000) Subject: Build documents now. X-Git-Tag: 1.0.0pre1~10 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~mdw/git/tripe/commitdiff_plain/9bb1a373d8861c54ce559e870d81bd16c3acdc74 Build documents now. --- diff --git a/Makefile.am b/Makefile.am index ec111863..8a3f72a9 100644 --- a/Makefile.am +++ b/Makefile.am @@ -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@ diff --git a/configure.in b/configure.in index 45f52aac..341b11e9 100644 --- a/configure.in +++ b/configure.in @@ -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 index 00000000..68289059 --- /dev/null +++ b/doc/Makefile.am @@ -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 ---------------------------------------------------