1999-12-13 Shirasaki Yasuhiro <yasuhiro@gnome.gr.jp> * po/POTFILES.in: Added missing app/path_tool.c. * plug-ins/common/displace.c * plug-ins/flame/flame.c * plug-ins/flame/Makefile.am * plug-ins/common/spheredesigner.c * po-plug-ins/POTFILES.in: Added gettext support. * plug-ins/Lighting/lighting_main.c * plug-ins/Lighting/lighting_ui.c: More _() tagging. * plug-ins/common/sample_colorize.c: Added missing INIT_I18N*(). -- yasuhiro
39 lines
633 B
Makefile
39 lines
633 B
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
libexecdir = $(gimpplugindir)/plug-ins
|
|
|
|
EXTRA_DIST = README
|
|
|
|
libexec_PROGRAMS = flame
|
|
|
|
flame_SOURCES = \
|
|
cmap.c \
|
|
cmap.h \
|
|
flame.c \
|
|
flame.h \
|
|
libifs.c \
|
|
libifs.h \
|
|
megawidget.c \
|
|
megawidget.h \
|
|
rect.c \
|
|
rect.h
|
|
|
|
INCLUDES = \
|
|
-DLOCALEDIR=\""$(localedir)"\" \
|
|
-I$(top_srcdir) \
|
|
$(GTK_CFLAGS) \
|
|
-I$(includedir)
|
|
|
|
LDADD = \
|
|
$(top_builddir)/libgimp/libgimpui.la \
|
|
$(top_builddir)/libgimp/libgimp.la \
|
|
$(GTK_LIBS) \
|
|
$(LIBUCB) \
|
|
$(INTLLIBS)
|
|
|
|
.PHONY: files
|
|
|
|
files:
|
|
@files=`ls $(DISTFILES) 2> /dev/null`; for p in $$files; do \
|
|
echo $$p; \
|
|
done
|