2008-05-16 Sven Neumann <sven@gimp.org>
* plug-ins/help/Makefile.am
* plug-ins/help/gimphelpprogress.[ch]
* plug-ins/help/gimphelpprogress-private.h: new files providing a
simple framework for progress indication and cancellation.
* plug-ins/help/gimphelp.[ch]
* plug-ins/help/gimphelpdomain.[ch]
* plug-ins/help/gimphelpitem.[ch]
* plug-ins/help/gimphelplocale.[ch]
* plug-ins/help/gimphelptypes.h
* plug-ins/help/help.c
* plug-ins/help/locales.[ch]: changed accordingly (passing NULL
as progress for now). Also updated copyright headers.
* plug-ins/help-browser/help-browser.c: same here.
* plug-ins/help/gimp-help-lookup.c: use the new API and show some
progress indication when the --verbose command-line option is used.
svn path=/trunk/; revision=25674
62 lines
1.2 KiB
Makefile
62 lines
1.2 KiB
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
libgimphelp = libgimphelp.a
|
|
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_CPPFLAGS = -DDATADIR=\""$(gimpdatadir)"\"
|
|
|
|
AM_LDFLAGS = $(mwindows)
|
|
|
|
noinst_LIBRARIES = libgimphelp.a
|
|
|
|
libgimphelp_a_SOURCES = \
|
|
gimphelptypes.h \
|
|
gimphelp.c \
|
|
gimphelp.h \
|
|
gimphelpdomain.c \
|
|
gimphelpdomain.h \
|
|
gimphelpitem.c \
|
|
gimphelpitem.h \
|
|
gimphelplocale.c \
|
|
gimphelplocale.h \
|
|
gimphelpprogress.c \
|
|
gimphelpprogress.h \
|
|
gimphelpprogress-private.h
|
|
|
|
libexecdir = $(gimpplugindir)/plug-ins
|
|
|
|
libexec_PROGRAMS = help
|
|
|
|
help_SOURCES = help.c
|
|
|
|
INCLUDES = \
|
|
-I$(top_srcdir) \
|
|
$(GIO_CFLAGS) \
|
|
-I$(includedir)
|
|
|
|
LDADD = \
|
|
$(libgimphelp) \
|
|
$(libgimp) \
|
|
$(libgimpcolor) \
|
|
$(libgimpbase) \
|
|
$(libgimpmath) \
|
|
$(GIO_LIBS) \
|
|
$(RT_LIBS) \
|
|
$(INTLLIBS)
|
|
|
|
|
|
noinst_PROGRAMS = gimp-help-lookup
|
|
|
|
gimp_help_lookup_SOURCES = gimp-help-lookup.c
|
|
|
|
gimp_help_lookup_LDADD = \
|
|
$(libgimphelp) \
|
|
$(libgimpbase) \
|
|
$(GIO_LIBS)
|