2004-03-09 09:37:56 +08:00
|
|
|
## Process this file with automake to produce Makefile.in
|
|
|
|
|
2006-11-24 04:36:17 +08:00
|
|
|
libgimphelp = libgimphelp.a
|
2004-03-09 09:37:56 +08:00
|
|
|
libgimp = $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la
|
2009-02-13 04:35:21 +08:00
|
|
|
libgimpconfig = $(top_builddir)/libgimpconfig/libgimpconfig-$(GIMP_API_VERSION).la
|
2005-08-03 16:19:07 +08:00
|
|
|
libgimpcolor = $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la
|
2004-03-09 09:37:56 +08:00
|
|
|
libgimpbase = $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la
|
2005-12-05 19:54:02 +08:00
|
|
|
libgimpmath = $(top_builddir)/libgimpmath/libgimpmath-$(GIMP_API_VERSION).la
|
2004-03-09 09:37:56 +08:00
|
|
|
|
2004-03-27 09:09:00 +08:00
|
|
|
if OS_WIN32
|
|
|
|
mwindows = -mwindows
|
|
|
|
endif
|
|
|
|
|
2010-09-01 14:24:45 +08:00
|
|
|
if HAVE_WINDRES
|
|
|
|
include $(top_srcdir)/build/windows/gimprc-plug-ins.rule
|
|
|
|
help_RC = help.rc.o
|
|
|
|
endif
|
|
|
|
|
2013-06-06 02:48:37 +08:00
|
|
|
AM_CPPFLAGS = \
|
|
|
|
-DDATADIR=\""$(gimpdatadir)"\" \
|
|
|
|
-I$(top_srcdir) \
|
|
|
|
$(CAIRO_CFLAGS) \
|
|
|
|
$(GIO_CFLAGS) \
|
|
|
|
$(GEGL_CFLAGS) \
|
|
|
|
$(GDK_PIXBUF_CFLAGS) \
|
|
|
|
-I$(includedir)
|
2004-08-14 23:47:22 +08:00
|
|
|
|
2004-03-27 09:09:00 +08:00
|
|
|
AM_LDFLAGS = $(mwindows)
|
|
|
|
|
2006-11-24 04:36:17 +08:00
|
|
|
noinst_LIBRARIES = libgimphelp.a
|
2006-11-21 05:46:21 +08:00
|
|
|
|
2006-11-24 04:36:17 +08:00
|
|
|
libgimphelp_a_SOURCES = \
|
2006-11-21 05:46:21 +08:00
|
|
|
gimphelptypes.h \
|
|
|
|
gimphelp.c \
|
|
|
|
gimphelp.h \
|
|
|
|
gimphelpdomain.c \
|
|
|
|
gimphelpdomain.h \
|
|
|
|
gimphelpitem.c \
|
|
|
|
gimphelpitem.h \
|
|
|
|
gimphelplocale.c \
|
2008-05-17 00:56:33 +08:00
|
|
|
gimphelplocale.h \
|
|
|
|
gimphelpprogress.c \
|
|
|
|
gimphelpprogress.h \
|
|
|
|
gimphelpprogress-private.h
|
2006-11-21 05:46:21 +08:00
|
|
|
|
2004-03-09 09:37:56 +08:00
|
|
|
libexecdir = $(gimpplugindir)/plug-ins
|
|
|
|
|
|
|
|
libexec_PROGRAMS = help
|
|
|
|
|
2006-11-21 05:46:21 +08:00
|
|
|
help_SOURCES = help.c
|
2004-03-09 09:37:56 +08:00
|
|
|
|
|
|
|
LDADD = \
|
2009-02-13 04:35:21 +08:00
|
|
|
$(libgimphelp) \
|
|
|
|
$(libgimp) \
|
|
|
|
$(libgimpconfig) \
|
|
|
|
$(libgimpcolor) \
|
|
|
|
$(libgimpbase) \
|
|
|
|
$(libgimpmath) \
|
2011-04-21 05:58:00 +08:00
|
|
|
$(CAIRO_LIBS) \
|
2009-02-13 04:35:21 +08:00
|
|
|
$(GIO_LIBS) \
|
2011-04-21 02:04:35 +08:00
|
|
|
$(GDK_PIXBUF_LIBS) \
|
2009-02-13 04:35:21 +08:00
|
|
|
$(RT_LIBS) \
|
2010-09-01 14:24:45 +08:00
|
|
|
$(INTLLIBS) \
|
|
|
|
$(help_RC)
|
2004-08-14 23:47:22 +08:00
|
|
|
|
|
|
|
|
|
|
|
noinst_PROGRAMS = gimp-help-lookup
|
|
|
|
|
2006-11-21 05:46:21 +08:00
|
|
|
gimp_help_lookup_SOURCES = gimp-help-lookup.c
|
2004-08-15 02:13:41 +08:00
|
|
|
|
2005-09-26 03:58:28 +08:00
|
|
|
gimp_help_lookup_LDADD = \
|
2006-11-21 05:46:21 +08:00
|
|
|
$(libgimphelp) \
|
2005-09-26 03:58:28 +08:00
|
|
|
$(libgimpbase) \
|
2008-04-02 18:30:58 +08:00
|
|
|
$(GIO_LIBS)
|