gimp/plug-ins/helpbrowser/Makefile.am
Sven Neumann 47ffee2f36 plug-ins/helpbrowser/Makefile.am added new files that implement conversion
2002-06-10  Sven Neumann  <sven@gimp.org>

	* plug-ins/helpbrowser/Makefile.am
	* plug-ins/helpbrowser/uri.[ch]: added new files that implement
	conversion of a relative URI and an absolute base URI to a new
	absolute URI according to RFC 2396. This code has been kindly
	provided by Jacob Schroeder <jacob@convergence.de>.

	* plug-ins/helpbrowser/helpbrowser.c: more work on the help
	browser using the new URI functions. Still work in progress.
2002-06-10 00:07:39 +00:00

27 lines
631 B
Makefile

## Process this file with automake to produce Makefile.in
libexecdir = $(gimpplugindir)/plug-ins
libexec_PROGRAMS = helpbrowser
helpbrowser_SOURCES = \
helpbrowser.c \
queue.c \
queue.h \
uri.c \
uri.h
INCLUDES = \
-I$(top_srcdir) \
$(GTKHTML2_CFLAGS) \
-I$(includedir)
LDADD = \
$(top_builddir)/libgimp/libgimpui-$(LT_RELEASE).la \
$(top_builddir)/libgimp/libgimp-$(LT_RELEASE).la \
$(top_builddir)/libgimpwidgets/libgimpwidgets-$(LT_RELEASE).la \
$(top_builddir)/libgimpcolor/libgimpcolor-$(LT_RELEASE).la \
$(top_builddir)/libgimpbase/libgimpbase-$(LT_RELEASE).la \
$(GTKHTML2_LIBS) \
$(INTLLIBS)