1998-06-11 14:04:59 +08:00
|
|
|
## Process this file with automake to produce Makefile.in
|
|
|
|
|
2004-01-22 11:51:46 +08:00
|
|
|
libgimpui = $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la
|
2005-02-05 05:55:06 +08:00
|
|
|
libgimpconfig = $(top_builddir)/libgimpconfig/libgimpconfig-$(GIMP_API_VERSION).la
|
2004-01-22 11:51:46 +08:00
|
|
|
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
|
|
|
|
|
2003-07-28 06:43:11 +08:00
|
|
|
if OS_WIN32
|
|
|
|
mwindows = -mwindows
|
|
|
|
endif
|
|
|
|
|
2010-09-01 14:24:45 +08:00
|
|
|
if HAVE_WINDRES
|
|
|
|
include $(top_srcdir)/build/windows/gimprc-plug-ins.rule
|
|
|
|
lighting_RC = lighting.rc.o
|
|
|
|
endif
|
|
|
|
|
2003-07-28 06:43:11 +08:00
|
|
|
AM_LDFLAGS = $(mwindows)
|
|
|
|
|
2004-07-13 23:59:52 +08:00
|
|
|
SUBDIRS = images
|
|
|
|
|
1999-06-25 09:29:23 +08:00
|
|
|
libexecdir = $(gimpplugindir)/plug-ins
|
1998-06-11 14:04:59 +08:00
|
|
|
|
2008-03-25 02:33:25 +08:00
|
|
|
libexec_PROGRAMS = lighting
|
|
|
|
|
|
|
|
lighting_SOURCES = \
|
|
|
|
lighting-apply.c \
|
|
|
|
lighting-apply.h \
|
|
|
|
lighting-image.c \
|
|
|
|
lighting-image.h \
|
|
|
|
lighting-main.c \
|
|
|
|
lighting-main.h \
|
|
|
|
lighting-preview.c \
|
|
|
|
lighting-preview.h \
|
|
|
|
lighting-shade.c \
|
|
|
|
lighting-shade.h \
|
|
|
|
lighting-stock.c \
|
|
|
|
lighting-stock.h \
|
|
|
|
lighting-ui.c \
|
|
|
|
lighting-ui.h
|
1998-06-11 14:04:59 +08:00
|
|
|
|
2002-06-08 07:00:46 +08:00
|
|
|
INCLUDES = \
|
2003-12-15 01:17:56 +08:00
|
|
|
-I$(top_srcdir) \
|
|
|
|
$(GTK_CFLAGS) \
|
2002-06-08 07:00:46 +08:00
|
|
|
-I$(includedir)
|
1999-05-30 00:35:47 +08:00
|
|
|
|
2002-06-08 07:00:46 +08:00
|
|
|
LDADD = \
|
2004-01-22 11:51:46 +08:00
|
|
|
$(libgimpui) \
|
|
|
|
$(libgimpwidgets) \
|
2005-02-05 06:31:58 +08:00
|
|
|
$(libgimpconfig) \
|
2004-01-22 11:51:46 +08:00
|
|
|
$(libgimp) \
|
|
|
|
$(libgimpcolor) \
|
|
|
|
$(libgimpmath) \
|
|
|
|
$(libgimpbase) \
|
|
|
|
$(GTK_LIBS) \
|
|
|
|
$(RT_LIBS) \
|
2010-09-01 14:24:45 +08:00
|
|
|
$(INTLLIBS) \
|
|
|
|
$(lighting_RC)
|