2001-04-14 23:21:45 +08:00
|
|
|
## Process this file with automake to produce Makefile.in
|
|
|
|
|
|
|
|
noinst_LTLIBRARIES = libappgui.la
|
|
|
|
|
|
|
|
libappgui_la_SOURCES = \
|
2001-04-18 05:43:29 +08:00
|
|
|
about-dialog.c \
|
|
|
|
about-dialog.h \
|
|
|
|
brush-editor.c \
|
|
|
|
brush-editor.h \
|
|
|
|
brush-select.c \
|
|
|
|
brush-select.h \
|
2001-04-21 10:11:12 +08:00
|
|
|
channels-commands.c \
|
|
|
|
channels-commands.h \
|
2001-04-18 05:43:29 +08:00
|
|
|
color-area.c \
|
|
|
|
color-area.h \
|
|
|
|
color-notebook.c \
|
|
|
|
color-notebook.h \
|
|
|
|
color-select.c \
|
|
|
|
color-select.h \
|
|
|
|
colormap-dialog.c \
|
|
|
|
colormap-dialog.h \
|
|
|
|
commands.c \
|
|
|
|
commands.h \
|
2001-04-19 01:57:10 +08:00
|
|
|
convert-dialog.c \
|
|
|
|
convert-dialog.h \
|
2001-04-18 08:05:26 +08:00
|
|
|
dialogs.c \
|
|
|
|
dialogs.h \
|
|
|
|
dialogs-commands.c \
|
|
|
|
dialogs-commands.h \
|
|
|
|
dialogs-constructors.c \
|
|
|
|
dialogs-constructors.h \
|
2001-04-28 23:11:29 +08:00
|
|
|
file-dialog-utils.c \
|
|
|
|
file-dialog-utils.h \
|
2001-04-18 05:43:29 +08:00
|
|
|
file-new-dialog.c \
|
|
|
|
file-new-dialog.h \
|
2001-04-28 23:11:29 +08:00
|
|
|
file-open-dialog.c \
|
|
|
|
file-open-dialog.h \
|
|
|
|
file-save-dialog.c \
|
|
|
|
file-save-dialog.h \
|
2001-04-18 05:43:29 +08:00
|
|
|
gradient-editor.c \
|
|
|
|
gradient-editor.h \
|
|
|
|
gradient-select.h \
|
|
|
|
gradient-select.c \
|
2001-04-18 08:05:26 +08:00
|
|
|
gui.c \
|
|
|
|
gui.h \
|
2001-04-18 05:43:29 +08:00
|
|
|
indicator-area.c \
|
|
|
|
indicator-area.h \
|
|
|
|
info-dialog.c \
|
|
|
|
info-dialog.h \
|
|
|
|
info-window.c \
|
|
|
|
info-window.h \
|
|
|
|
layer-select.c \
|
|
|
|
layer-select.h \
|
2001-04-21 00:27:44 +08:00
|
|
|
layers-commands.c \
|
|
|
|
layers-commands.h \
|
2001-04-18 05:43:29 +08:00
|
|
|
menus.c \
|
|
|
|
menus.h \
|
2001-04-19 03:14:20 +08:00
|
|
|
offset-dialog.c \
|
|
|
|
offset-dialog.h \
|
2001-04-18 05:43:29 +08:00
|
|
|
palette-editor.c \
|
|
|
|
palette-editor.h \
|
|
|
|
palette-import-dialog.c \
|
|
|
|
palette-import-dialog.h \
|
|
|
|
palette-select.c \
|
|
|
|
palette-select.h \
|
|
|
|
paths-dialog.c \
|
|
|
|
paths-dialog.h \
|
|
|
|
pattern-select.c \
|
|
|
|
pattern-select.h \
|
|
|
|
preferences-dialog.c \
|
|
|
|
preferences-dialog.h \
|
|
|
|
session.c \
|
|
|
|
session.h \
|
2001-04-18 08:05:26 +08:00
|
|
|
splash.c \
|
|
|
|
splash.h \
|
2001-04-18 05:43:29 +08:00
|
|
|
test-commands.c \
|
|
|
|
test-commands.h \
|
|
|
|
tips-dialog.c \
|
|
|
|
tips-dialog.h \
|
|
|
|
toolbox.c \
|
|
|
|
toolbox.h
|
2001-04-16 01:03:52 +08:00
|
|
|
|
2001-04-14 23:21:45 +08:00
|
|
|
AM_CPPFLAGS = \
|
|
|
|
-DG_LOG_DOMAIN=\"Gimp-GUI\"
|
|
|
|
|
|
|
|
INCLUDES = \
|
|
|
|
-I$(top_srcdir) \
|
|
|
|
-I$(top_srcdir)/app \
|
|
|
|
$(GTK_CFLAGS) \
|
|
|
|
-I$(includedir)
|
|
|
|
|
|
|
|
.PHONY: files
|
|
|
|
|
|
|
|
files:
|
|
|
|
@files=`ls $(DISTFILES) 2> /dev/null`; for p in $$files; do \
|
|
|
|
echo $$p; \
|
|
|
|
done
|