libgimpcolor/Makefile.am add a dependency on libgimpbase.la so they get

2003-09-10  Manish Singh  <yosh@gimp.org>

        * 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
This commit is contained in:
Manish Singh 2003-09-10 19:56:24 +00:00 committed by Manish Singh
parent c868c5cb96
commit 2deb4c975c
4 changed files with 17 additions and 1 deletions

View File

@ -1,3 +1,11 @@
2003-09-10 Manish Singh <yosh@gimp.org>
* 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 <mitch@gimp.org>
* app/display/gimpdisplayshell-layer-select.c: switch layers

View File

@ -12,9 +12,9 @@ SUBDIRS = \
po-script-fu \
data \
tips \
libgimpbase \
libgimpcolor \
libgimpmath \
libgimpbase \
libgimpmodule \
libgimpwidgets \
libgimp \

View File

@ -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

View File

@ -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)