Default to AM 1.9. Bug #323868, patch by Christian Kirbach.
[platform/upstream/gnome-common.git] / README
1 This directory contains sample files that should be in pretty much every
2 GNOME application.
3
4 -----------------------------------------------------------------------------
5
6 To make this work both for GNOME Applications inside and outside the
7 GNOME CVS Tree I did the following:
8
9 * There is an `INSIDE_GNOME_COMMON' automake conditional which is defined
10   in two places:
11
12   - macros/aclocal-includes.m4 defines this to always be false.
13
14   - gnome-common/configure.in does not include anything from macros and
15     defines this to be true.
16
17 * We use this automake conditional in the macros/Makefile.am to install
18   $(MACROS), autogen.sh, gnome-common.m4 and a newly created gnome-macros.dep
19   in `$(datadir)/aclocal/gnome'.
20
21   Since aclocal doesn't look in subdirectories we can safely install them
22   there even when compiling from CVS.
23
24   Also, there is no need to make any change to any existing application
25   in the GNOME CVS Tree - really fine ...
26
27 * When we're outside the GNOME CVS Tree we simply need to tell aclocal that
28   it should also look in `$(datadir)/aclocal/gnome' and it will find all
29   the macros.
30
31   The is a `gnome-skel' module in CVS that can be used as a starting point
32   when writing a new GNOME Application that should be used outside CVS.
33
34 February  4, 1999,
35 Martin Baulig <martin@home-of-linux.org>