Gimp/plug-ins/helpbrowser/Makefile.am
Manish Singh 1fdcc0deed plug-ins/bmp/Makefile.am plug-ins/fits/Makefile.am
* plug-ins/bmp/Makefile.am
* plug-ins/fits/Makefile.am
* plug-ins/helpbrowser/Makefile.am
* plug-ins/print/Makefile.am
* plug-ins/sgi/Makefile.am: reorder linking for libgimpui comes
before libgimp; seemed to be causing problems despite libtool

-Yosh
2000-02-13 01:55:11 +00:00

33 lines
581 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) \
$(GTKXMHTML_CFLAGS) \
-I$(includedir)
LDADD = \
$(top_builddir)/libgimp/libgimpui.la \
$(top_builddir)/libgimp/libgimp.la \
$(GTKXMHTML_LIBS) \
$(INTLLIBS)
AM_CPPFLAGS = \
-DLOCALEDIR=\""$(localedir)"\"
.PHONY: files
files:
@files=`ls $(DISTFILES) 2> /dev/null`; for p in $$files; do \
echo $$p; \
done