gimp/plug-ins/gimpressionist/Makefile.am
Michael Natterer 69491ddc34 added zh_TW.Big5 to ALL_LINGUAS. Added the STRIP_BEGIN and STRIP_END
2001-06-07  Michael Natterer  <mitch@gimp.org>

	* configure.in: added zh_TW.Big5 to ALL_LINGUAS. Added the
	STRIP_BEGIN and STRIP_END macros from gtk+.

	* app/base/makefile.msc: unmodified copy of app/core/makefile.msc
	(just to make "make dist" work).

	* */Makefile.am: use @STRIP_BEGIN@ and @STRIP_END@ all over the
	place. The Makefiles are a bit uglier now but it makes compiling
	output much more readable.
2001-06-07 17:20:50 +00:00

63 lines
1.3 KiB
Makefile

## Process this file with automake to produce Makefile.in
libexecdir = $(gimpplugindir)/plug-ins
SUBDIRS = Brushes Paper Presets
libexec_PROGRAMS = gimpressionist
gimpressionist_SOURCES = @STRIP_BEGIN@ \
about.c \
brush.c \
general.c \
gimp.c \
gimpressionist.c \
gimpressionist.h \
orientation.c \
orientmap.c \
paper.c \
placement.c \
plasma.c \
ppmtool.c \
ppmtool.h \
presets.c \
preview.c \
repaint.c \
size.c \
sizemap.c \
color.c \
@STRIP_END@
EXTRA_DIST = \
README \
ChangeLog
AM_CPPFLAGS = @STRIP_BEGIN@ \
-DDEFAULTPATH=\""~/$(gimpdir)/gimpressionist:$(gimpdatadir)/gimpressionist"\" \
-DLOCALEDIR=\""$(localedir)"\" \
@STRIP_END@
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@
.PHONY: files
files:
@files=`ls $(DISTFILES) 2> /dev/null`; for p in $$files; do \
echo $$p; \
done