2005-02-07 Michael Natterer <mitch@gimp.org> * configure.in: check for gnome-vfs-2.0 * plug-ins/uri/Makefile.am * plug-ins/uri/uri-backend-gnomevfs.c: new file which is built instead of the wget backend if GnomeVFS is available.
49 lines
1.1 KiB
Makefile
49 lines
1.1 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
|
|
|
|
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
|
|
backend_cflags = $(GNOMEVFS_CFLAGS)
|
|
backend_libs = $(GNOMEVFS_LIBS)
|
|
else
|
|
backend_sources = uri-backend-wget.c
|
|
endif
|
|
|
|
uri_SOURCES = \
|
|
uri.c \
|
|
uri-backend.h \
|
|
$(backend_sources)
|
|
|
|
INCLUDES = \
|
|
-I$(top_srcdir) \
|
|
$(GTK_CFLAGS) \
|
|
$(backend_cflags) \
|
|
-I$(includedir)
|
|
|
|
LDADD = \
|
|
$(libgimpui) \
|
|
$(libgimpwidgets) \
|
|
$(libgimpconfig) \
|
|
$(libgimp) \
|
|
$(libgimpcolor) \
|
|
$(libgimpbase) \
|
|
$(GTK_LIBS) \
|
|
$(backend_libs) \
|
|
$(RT_LIBS) \
|
|
$(INTLLIBS)
|