2002-05-11 Sven Neumann <sven@gimp.org> * libgimp/stdplugins-intl.h * plug-ins/script-fu/script-fu-intl.h: use the new function gimp_locale_directory() instead of LOCALEDIR. * app/Makefile.am * plug-ins/*/Makefile.am: removed LOCALEDIR definition.
30 lines
729 B
Makefile
30 lines
729 B
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
libexecdir = $(gimpplugindir)/plug-ins
|
|
|
|
libexec_PROGRAMS = dbbrowser
|
|
|
|
dbbrowser_SOURCES = @STRIP_BEGIN@ \
|
|
dbbrowser.c \
|
|
dbbrowser_utils.c \
|
|
dbbrowser_utils.h \
|
|
@STRIP_END@
|
|
|
|
EXTRA_DIST = README
|
|
|
|
INCLUDES = @STRIP_BEGIN@ \
|
|
-I$(top_srcdir) \
|
|
$(GTK_CFLAGS) \
|
|
-I$(includedir) \
|
|
@STRIP_END@
|
|
|
|
LDADD = @STRIP_BEGIN@ \
|
|
$(top_builddir)/libgimp/libgimpui-$(LT_RELEASE).la \
|
|
$(top_builddir)/libgimpwidgets/libgimpwidgets-$(LT_RELEASE).la \
|
|
$(top_builddir)/libgimp/libgimp-$(LT_RELEASE).la \
|
|
$(top_builddir)/libgimpcolor/libgimpcolor-$(LT_RELEASE).la \
|
|
$(top_builddir)/libgimpbase/libgimpbase-$(LT_RELEASE).la \
|
|
$(GTK_LIBS) \
|
|
$(INTLLIBS) \
|
|
@STRIP_END@
|