2004-03-09 Sven Neumann <sven@gimp.org> Finished some work that Brix started on the help system. It's now possibly to use an external web-browser for context help (bug #136081): * configure.in * plug-ins/Makefile.am * plug-ins/help/Makefile.am * plug-ins/help/domain.[ch] * plug-ins/help/help.c: new plug-in that does the help domain management. Most of this used to live in the helpbrowser plug-in. * plug-ins/helpbrowser/Makefile.am * plug-ins/helpbrowser/domain.[ch]: removed these two files here. * plug-ins/helpbrowser/helpbrowser.c: changed accordingly. * app/widgets/gimphelp.c: use the new help plug-in.
36 lines
839 B
Makefile
36 lines
839 B
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
libgimpui = $(top_builddir)/libgimp/libgimpui-$(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
|
|
|
|
libexecdir = $(gimpplugindir)/plug-ins
|
|
|
|
libexec_PROGRAMS = helpbrowser
|
|
|
|
helpbrowser_SOURCES = \
|
|
helpbrowser.c \
|
|
dialog.c \
|
|
dialog.h \
|
|
queue.c \
|
|
queue.h \
|
|
uri.c \
|
|
uri.h
|
|
|
|
INCLUDES = \
|
|
-I$(top_srcdir) \
|
|
$(GTKHTML2_CFLAGS) \
|
|
-I$(includedir)
|
|
|
|
LDADD = \
|
|
$(libgimpui) \
|
|
$(libgimpwidgets) \
|
|
$(libgimp) \
|
|
$(libgimpcolor) \
|
|
$(libgimpbase) \
|
|
$(GTKHTML2_LIBS) \
|
|
$(RT_LIBS) \
|
|
$(INTLLIBS)
|