summaryrefslogtreecommitdiff
path: root/am/maintainer-dirs
diff options
context:
space:
mode:
authorThien-Thi Nguyen <ttn@gnuvola.org>2002-03-31 01:12:57 +0000
committerThien-Thi Nguyen <ttn@gnuvola.org>2002-03-31 01:12:57 +0000
commit3f679f625bc3b542c1b48da75b5bc040e6307220 (patch)
treeab857b5b52821092c9b7e5a48109bf4a5483f9ec /am/maintainer-dirs
parente8f1ff7188f658696b3926e74f628f2fcafb8cfc (diff)
downloadguile-3f679f625bc3b542c1b48da75b5bc040e6307220.tar.gz
Initial revision
Diffstat (limited to 'am/maintainer-dirs')
-rw-r--r--am/maintainer-dirs37
1 files changed, 37 insertions, 0 deletions
diff --git a/am/maintainer-dirs b/am/maintainer-dirs
new file mode 100644
index 000000000..b5ec2998a
--- /dev/null
+++ b/am/maintainer-dirs
@@ -0,0 +1,37 @@
+## am/maintainer-dirs --- define workbook and mscripts vars
+
+## Copyright (C) 2002 Free Software Foundation
+##
+## This file is part of GUILE.
+##
+## GUILE 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, or
+## (at your option) any later version.
+##
+## GUILE 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 GUILE; see the file COPYING. If not, write
+## to the Free Software Foundation, Inc., 59 Temple Place, Suite
+## 330, Boston, MA 02111-1307 USA
+
+## Commentary:
+
+## This fragment defines two variables: workbook and mscripts.
+## These are only defined in MAINTAINER_MODE.
+## It can be included in any Makefile.am by adding the line:
+## include $(top_srcdir)/am/maintainer-dirs
+## See $(workbook)/build/maintainer-dirs.text for more info.
+
+## Code:
+
+if MAINTAINER_MODE
+workbook = $(top_srcdir_absolute)/../workbook
+mscripts = $(top_srcdir_absolute)/../scripts
+endif
+
+## am/maintainer-dirs ends here