mirror of https://github.com/GNOME/gimp.git
39 lines
906 B
Makefile
39 lines
906 B
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
libexecdir = $(gimpplugindir)/plug-ins
|
|
|
|
libexec_PROGRAMS = pagecurl
|
|
|
|
pagecurl_SOURCES = @STRIP_BEGIN@ \
|
|
pagecurl.c \
|
|
curl0.xpm \
|
|
curl1.xpm \
|
|
curl2.xpm \
|
|
curl3.xpm \
|
|
curl4.xpm \
|
|
curl5.xpm \
|
|
curl6.xpm \
|
|
curl7.xpm \
|
|
@STRIP_END@
|
|
|
|
AM_CPPFLAGS = @STRIP_BEGIN@ \
|
|
-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)/libgimpmath/libgimpmath-$(LT_RELEASE).la \
|
|
$(top_builddir)/libgimpbase/libgimpbase-$(LT_RELEASE).la \
|
|
$(GTK_LIBS) \
|
|
$(INTLLIBS) \
|
|
@STRIP_END@
|