
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
40 lines
1.0 KiB
Makefile
40 lines
1.0 KiB
Makefile
## Please update this variable if any new macros are created
|
|
MACROS= \
|
|
aclocal-include.m4 \
|
|
compiler-flags.m4 \
|
|
curses.m4 \
|
|
gnome-fileutils.m4 \
|
|
gnome-ghttp-check.m4 \
|
|
gnome-gnorba-check.m4 \
|
|
gnome-guile-checks.m4 \
|
|
gnome-libgtop-check.m4 \
|
|
gnome-objc-checks.m4 \
|
|
gnome-orbit-check.m4 \
|
|
gnome-pthread-check.m4 \
|
|
gnome-support.m4 \
|
|
gnome-undelfs.m4 \
|
|
gnome-vfs.m4 \
|
|
gnome-print-check.m4 \
|
|
gnome-x-checks.m4 \
|
|
gnome-xml-check.m4 \
|
|
gnome-gettext.m4 \
|
|
gnome.m4 \
|
|
linger.m4 \
|
|
need-declaration.m4
|
|
|
|
EXTRA_DIST=$(MACROS) gnome-common.m4 autogen.sh
|
|
MAINTAINERCLEANFILES=macros.dep
|
|
|
|
@MAINT@macros.dep: Makefile.am
|
|
@MAINT@ @echo '$$(top_srcdir)/aclocal.m4: $(MACROS:%=macros/%)' > $@
|
|
|
|
if INSIDE_GNOME_COMMON
|
|
gnome_aclocaldir = $(datadir)/aclocal/gnome
|
|
|
|
gnome-macros.dep: Makefile.am
|
|
@echo '$$(top_srcdir)/aclocal.m4: $(MACROS:%=$(gnome_aclocaldir)/%)' > $@
|
|
|
|
gnome_aclocal_DATA = $(MACROS) gnome-macros.dep gnome-common.m4 autogen.sh
|
|
|
|
endif
|