2005-08-16 Sven Neumann <sven@gimp.org> * configure.in * plug-ins/uri/Makefile.am: redid the libgnomeui and gnome-vfs checks so that pkg-config combines the compiler and linker flags instead of concatenating them in the Makefile.
49 lines
1.2 KiB
Makefile
49 lines
1.2 KiB
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
libgimpui = $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la
|
|
libgimpconfig = $(top_builddir)/libgimpconfig/libgimpconfig-$(GIMP_API_VERSION).la
|
|
libgimpwidgets = $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la
|
|
libgimp = $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la
|
|
libgimpcolor = $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la
|
|
libgimpbase = $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la
|
|
libgimpmath = $(top_builddir)/libgimpmath/libgimpmath-$(GIMP_API_VERSION).la
|
|
|
|
if OS_WIN32
|
|
mwindows = -mwindows
|
|
endif
|
|
|
|
AM_LDFLAGS = $(mwindows)
|
|
|
|
libexecdir = $(gimpplugindir)/plug-ins
|
|
|
|
libexec_PROGRAMS = uri
|
|
|
|
if HAVE_GNOMEVFS
|
|
backend_sources = uri-backend-gnomevfs.c
|
|
else
|
|
backend_sources = uri-backend-wget.c
|
|
endif
|
|
|
|
uri_SOURCES = \
|
|
uri.c \
|
|
uri-backend.h \
|
|
$(backend_sources)
|
|
|
|
INCLUDES = \
|
|
-I$(top_srcdir) \
|
|
$(URI_CFLAGS) \
|
|
$(GTK_CFLAGS) \
|
|
-I$(includedir)
|
|
|
|
LDADD = \
|
|
$(libgimpui) \
|
|
$(libgimpwidgets) \
|
|
$(libgimpconfig) \
|
|
$(libgimpmath) \
|
|
$(libgimp) \
|
|
$(libgimpcolor) \
|
|
$(libgimpbase) \
|
|
$(URI_LIBS) \
|
|
$(GTK_LIBS) \
|
|
$(RT_LIBS) \
|
|
$(INTLLIBS)
|