Gimp/plug-ins/helpbrowser/Makefile.am
Michael Natterer c5b032b01e added $GTK_CFLAGS and $GTK_LIBS. Closes #28491.
2000-10-18  Michael Natterer  <mitch@gimp.org>

	* plug-ins/helpbrowser/Makefile.am: added $GTK_CFLAGS and $GTK_LIBS.
	Closes #28491.
2000-10-18 00:12:32 +00:00

35 lines
615 B
Makefile

## Process this file with automake to produce Makefile.in
libexecdir = $(gimpplugindir)/plug-ins
libexec_PROGRAMS = helpbrowser
helpbrowser_SOURCES = \
back.xpm \
forward.xpm \
helpbrowser.c \
queue.c \
queue.h
INCLUDES = \
-I$(top_srcdir) \
$(GTK_CFLAGS) \
$(GTKXMHTML_CFLAGS) \
-I$(includedir)
LDADD = \
$(top_builddir)/libgimp/libgimpui.la \
$(top_builddir)/libgimp/libgimp.la \
$(GTK_LIBS) \
$(GTKXMHTML_LIBS) \
$(INTLLIBS)
AM_CPPFLAGS = \
-DLOCALEDIR=\""$(localedir)"\"
.PHONY: files
files:
@files=`ls $(DISTFILES) 2> /dev/null`; for p in $$files; do \
echo $$p; \
done