2008-03-24 Michael Natterer <mitch@gimp.org> * plug-ins/map-object * plug-ins/gradient-flare * plug-ins/ifs-compose * plug-ins/selection-to-path * plug-ins/lighting * plug-ins/help-browser * plug-ins/fli: rename files in these folders to have no underscores and match new names of the plug-ins. * configure.in: changed accordingly. svn path=/trunk/; revision=25197
65 lines
1.6 KiB
Makefile
65 lines
1.6 KiB
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
libgimphelp = $(top_builddir)/plug-ins/help/libgimphelp.a
|
|
libgimpui = $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la
|
|
libgimpconfig = $(top_builddir)/libgimpconfig/libgimpconfig-$(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
|
|
libgimpmath = $(top_builddir)/libgimpmath/libgimpmath-$(GIMP_API_VERSION).la
|
|
|
|
if OS_WIN32
|
|
mwindows = -mwindows
|
|
endif
|
|
|
|
AM_LDFLAGS = $(mwindows)
|
|
|
|
libexecdir = $(gimpplugindir)/plug-ins
|
|
|
|
libexec_PROGRAMS = help-browser
|
|
|
|
INCLUDES = \
|
|
-I$(top_srcdir) \
|
|
$(GTKHTML2_CFLAGS) \
|
|
-I$(includedir)
|
|
|
|
LDADD = \
|
|
$(libgimphelp) \
|
|
$(libgimpui) \
|
|
$(libgimpwidgets) \
|
|
$(libgimpconfig) \
|
|
$(libgimp) \
|
|
$(libgimpcolor) \
|
|
$(libgimpmath) \
|
|
$(libgimpbase) \
|
|
$(GTKHTML2_LIBS) \
|
|
$(RT_LIBS) \
|
|
$(INTLLIBS)
|
|
|
|
help_browser_sources = \
|
|
gimpthrobber.c \
|
|
gimpthrobber.h \
|
|
gimpthrobberaction.c \
|
|
gimpthrobberaction.h \
|
|
help-browser.c \
|
|
dialog.c \
|
|
dialog.h \
|
|
queue.c \
|
|
queue.h \
|
|
uri.c \
|
|
uri.h
|
|
|
|
help_browser_built_sources = logo-pixbuf.h
|
|
dialog.c: $(help_browser_built_sources)
|
|
|
|
help_browser_SOURCES = \
|
|
$(help_browser_built_sources) $(help_browser_sources)
|
|
|
|
|
|
$(srcdir)/logo-pixbuf.h: wilber-reading.png
|
|
$(GDK_PIXBUF_CSOURCE) --raw --name=logo_data $< > $(@F)
|
|
|
|
EXTRA_DIST = wilber-reading.png
|
|
|
|
CLEANFILES = logo-pixbuf.h
|