From 2deb4c975c111f635b1f29e0a7ede1b3ad7119b9 Mon Sep 17 00:00:00 2001 From: Manish Singh Date: Wed, 10 Sep 2003 19:56:24 +0000 Subject: [PATCH] libgimpcolor/Makefile.am add a dependency on libgimpbase.la so they get 2003-09-10 Manish Singh * libgimpcolor/Makefile.am * libgimpmath/Makefile.am: add a dependency on libgimpbase.la so they get rebuilt when the version number changes. * Makefile.am: build libgimpbase before the above --- ChangeLog | 8 ++++++++ Makefile.am | 2 +- libgimpcolor/Makefile.am | 4 ++++ libgimpmath/Makefile.am | 4 ++++ 4 files changed, 17 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index f4550970bc..01b79bb529 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2003-09-10 Manish Singh + + * libgimpcolor/Makefile.am + * libgimpmath/Makefile.am: add a dependency on libgimpbase.la so + they get rebuilt when the version number changes. + + * Makefile.am: build libgimpbase before the above + 2003-09-10 Michael Natterer * app/display/gimpdisplayshell-layer-select.c: switch layers diff --git a/Makefile.am b/Makefile.am index e511b8a428..c6d3e7b3d8 100644 --- a/Makefile.am +++ b/Makefile.am @@ -12,9 +12,9 @@ SUBDIRS = \ po-script-fu \ data \ tips \ + libgimpbase \ libgimpcolor \ libgimpmath \ - libgimpbase \ libgimpmodule \ libgimpwidgets \ libgimp \ diff --git a/libgimpcolor/Makefile.am b/libgimpcolor/Makefile.am index da0e7f4274..73caea1844 100644 --- a/libgimpcolor/Makefile.am +++ b/libgimpcolor/Makefile.am @@ -1,5 +1,7 @@ ## Process this file with automake to produce Makefile.in +libgimpbase = $(top_builddir)/libgimpbase/libgimpbase-$(LT_RELEASE).la + if PLATFORM_WIN32 no_undefined = -no-undefined endif @@ -88,6 +90,8 @@ libgimpcolor_1_3_la_LDFLAGS = \ $(no_undefined) \ $(libgimpcolor_export_symbols) +libgimpcolor_1_3_la_DEPENDENCIES = $(gimpcolor_def) $(libgimpbase) + libgimpcolor_1_3_la_LIBADD = $(GLIB_LIBS) $(libm) install-data-local: install-ms-lib install-libtool-import-lib diff --git a/libgimpmath/Makefile.am b/libgimpmath/Makefile.am index aad47f9718..203c5d2705 100644 --- a/libgimpmath/Makefile.am +++ b/libgimpmath/Makefile.am @@ -1,5 +1,7 @@ ## Process this file with automake to produce Makefile.in +libgimpbase = $(top_builddir)/libgimpbase/libgimpbase-$(LT_RELEASE).la + if PLATFORM_WIN32 no_undefined = -no-undefined endif @@ -79,6 +81,8 @@ libgimpmath_1_3_la_LDFLAGS = \ $(no_undefined) \ $(libgimpmath_export_symbols) +libgimpmath_1_3_la_DEPENDENCIES = $(gimpmath_def) $(libgimpbase) + libgimpmath_1_3_la_LIBADD = $(GLIB_LIBS) $(libm)