gimp/plug-ins/gdyntext/Makefile.am
Manish Singh 204908ef8f plug-ins/common/mkgen.pl added a pattern rule to install single plugins
* plug-ins/common/mkgen.pl
* plug-ins/common/Makefile.am: added a pattern rule to install
single plugins

* all plugin Makefiles: use $libexecdir instead of $pluginlibdir
so we get installed on make install-exec

* plug-ins/gap/gap_filter_iterators.c: removed old Colorify_iter_ALT
reference

-Yosh
1999-06-25 01:29:23 +00:00

53 lines
1,003 B
Makefile

## Process this file with automake to produce Makefile.in
EXTRA_DIST = \
graphics/align_center.xpm \
graphics/align_left.xpm \
graphics/align_right.xpm \
graphics/antialias.xpm \
graphics/charmap.xpm \
graphics/font_preview.xpm \
graphics/font_preview_clear.xpm \
graphics/font_preview_default.xpm \
graphics/gdyntext_logo.xpm \
graphics/new_layer.xpm \
graphics/text_load.xpm \
ChangeLog \
README \
TODO
libexecdir = $(gimpplugindir)/plug-ins
libexec_PROGRAMS = gdyntext
gdyntext_SOURCES = \
charmap.c \
charmap.h \
charmap_window.c \
charmap_window.h \
font_selection.c \
font_selection.h \
gdyntext.c \
gdyntext.h \
gdyntext_ui.c \
gdyntext_ui.h \
message_window.c \
message_window.h
INCLUDES = \
-I$(top_srcdir) \
$(GTK_CFLAGS) \
-I$(includedir)
LDADD = \
$(top_builddir)/libgimp/libgimp.la \
$(GTK_LIBS) \
$(INTLLIBS)
.PHONY: files
files:
@files=`ls $(DISTFILES) 2> /dev/null`; for p in $$files; do \
echo $$p; \
done