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