2001-04-14 23:21:45 +08:00
|
|
|
## Process this file with automake to produce Makefile.in
|
|
|
|
|
2005-02-13 23:08:08 +08:00
|
|
|
AM_CPPFLAGS = \
|
2007-09-14 00:55:55 +08:00
|
|
|
-DG_LOG_DOMAIN=\"Gimp-GUI\" \
|
|
|
|
-DGIMP_COMMAND=\"@GIMP_COMMAND@\"
|
2005-02-13 23:08:08 +08:00
|
|
|
|
|
|
|
INCLUDES = \
|
|
|
|
-I$(top_builddir) \
|
|
|
|
-I$(top_srcdir) \
|
|
|
|
-I$(top_builddir)/app \
|
|
|
|
-I$(top_srcdir)/app \
|
2008-10-10 04:24:04 +08:00
|
|
|
$(GEGL_CFLAGS) \
|
2005-02-13 23:08:08 +08:00
|
|
|
$(GTK_CFLAGS) \
|
2007-01-19 22:50:13 +08:00
|
|
|
$(DBUS_GLIB_CFLAGS) \
|
2005-02-13 23:08:08 +08:00
|
|
|
-I$(includedir)
|
|
|
|
|
2001-06-06 00:14:47 +08:00
|
|
|
noinst_LIBRARIES = libappgui.a
|
2001-04-14 23:21:45 +08:00
|
|
|
|
2008-07-14 03:49:32 +08:00
|
|
|
libappgui_a_sources = \
|
2004-09-13 23:15:23 +08:00
|
|
|
color-history.c \
|
|
|
|
color-history.h \
|
2008-07-14 03:49:32 +08:00
|
|
|
gimpdbusservice.c \
|
|
|
|
gimpdbusservice.h \
|
2004-09-13 23:15:23 +08:00
|
|
|
gui.c \
|
|
|
|
gui.h \
|
2006-07-19 14:50:34 +08:00
|
|
|
gui-message.c \
|
|
|
|
gui-message.h \
|
2008-07-11 17:40:09 +08:00
|
|
|
gui-unique.c \
|
|
|
|
gui-unique.h \
|
2004-09-13 23:15:23 +08:00
|
|
|
gui-vtable.c \
|
|
|
|
gui-vtable.h \
|
|
|
|
gui-types.h \
|
|
|
|
session.c \
|
|
|
|
session.h \
|
|
|
|
splash.c \
|
|
|
|
splash.h \
|
|
|
|
themes.c \
|
2007-08-30 19:19:00 +08:00
|
|
|
themes.h \
|
2007-09-19 01:43:23 +08:00
|
|
|
ige-mac-menu.c \
|
|
|
|
ige-mac-menu.h
|
2003-01-13 22:08:10 +08:00
|
|
|
|
2008-07-14 03:49:32 +08:00
|
|
|
libappgui_a_built_sources = gimpdbusservice-glue.h
|
|
|
|
|
|
|
|
libappgui_a_SOURCES = $(libappgui_a_built_sources) $(libappgui_a_sources)
|
|
|
|
|
|
|
|
EXTRA_DIST = \
|
|
|
|
dbus-service.xml \
|
|
|
|
makefile.msc
|
|
|
|
|
|
|
|
|
|
|
|
#
|
|
|
|
# rules to generate built sources
|
|
|
|
#
|
|
|
|
# setup autogeneration dependencies
|
|
|
|
gen_sources = gimpdbusservice-glue.h
|
|
|
|
CLEANFILES = $(gen_sources)
|
|
|
|
|
|
|
|
$(srcdir)/gimpdbusservice.c: gimpdbusservice-glue.h
|
|
|
|
|
|
|
|
gimpdbusservice-glue.h: $(srcdir)/dbus-service.xml
|
|
|
|
$(DBUS_BINDING_TOOL) --mode=glib-server --prefix=gimp $< > $(@F)
|