mirror of https://github.com/GNOME/gimp.git
46 lines
1019 B
Makefile
46 lines
1019 B
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
libgimpui = $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la
|
|
libgimpwidgets = $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la
|
|
libgimp = $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la
|
|
libgimpcolor = $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la
|
|
libgimpmath = $(top_builddir)/libgimpmath/libgimpmath-$(GIMP_API_VERSION).la
|
|
libgimpbase = $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la
|
|
|
|
if OS_WIN32
|
|
mwindows = -mwindows
|
|
endif
|
|
|
|
AM_LDFLAGS = $(mwindows)
|
|
|
|
libexecdir = $(gimpplugindir)/plug-ins
|
|
|
|
libexec_PROGRAMS = pagecurl
|
|
|
|
pagecurl_SOURCES = \
|
|
pagecurl.c \
|
|
curl0.xpm \
|
|
curl1.xpm \
|
|
curl2.xpm \
|
|
curl3.xpm \
|
|
curl4.xpm \
|
|
curl5.xpm \
|
|
curl6.xpm \
|
|
curl7.xpm
|
|
|
|
INCLUDES = \
|
|
-I$(top_srcdir) \
|
|
$(GTK_CFLAGS) \
|
|
-I$(includedir)
|
|
|
|
LDADD = \
|
|
$(libgimpui) \
|
|
$(libgimpwidgets) \
|
|
$(libgimp) \
|
|
$(libgimpcolor) \
|
|
$(libgimpmath) \
|
|
$(libgimpbase) \
|
|
$(GTK_LIBS) \
|
|
$(RT_LIBS) \
|
|
$(INTLLIBS)
|