1999-02-04 Martin Baulig <martin@home-of-linux.org> * aclocal-include.m4 (INSIDE_GNOME_COMMON): New automake conditional that's always false. * gnome-common.m4: New file. This defines a `GNOME_COMMON_INIT' macro that should be used in all GNOME Applications outside the CVS tree. * Makefile.am: If we are `INSIDE_GNOME_COMMON', install all $(MACROS), autogen.sh, gnome-common.m4 and a newly created gnome-macros.dep in `$(datadir)/aclocal/gnome'. svn path=/trunk/; revision=640
15 lines
265 B
Plaintext
15 lines
265 B
Plaintext
# gnome-common.m4
|
|
#
|
|
# This only for packages that are not in the GNOME CVS tree.
|
|
|
|
dnl GNOME_COMMON_INIT
|
|
|
|
AC_DEFUN([GNOME_COMMON_INIT],
|
|
[
|
|
GNOME_ACLOCAL_DIR=`$ACLOCAL --print-ac-dir`/gnome
|
|
AC_SUBST(GNOME_ACLOCAL_DIR)
|
|
|
|
ACLOCAL="$ACLOCAL -I $GNOME_ACLOCAL_DIR"
|
|
])
|
|
|