blob: 4100ec8532c0bb7282bee11f4aaec0d29174e821 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
## Makefile.am fragment sourced by src/Makefile.am.
#
# Several object property dialogs
# Author: Lauris Kaplinski <lauris@ximian.com>
#
# Here should be things, that use only xml interface, not objects themselves
# Currently we still have selection_changed functions, but these will be
# replaced by selection 'changed' signal handlers
#
dialogs/all: dialogs/libspdialogs.a
dialogs/clean:
rm -f dialogs/libspdialogs.a $(dialogs_libspdialogs_a_OBJECTS)
dialogs_libspdialogs_a_SOURCES = \
dialogs/debugdialog.cpp \
dialogs/debugdialog.h \
dialogs/dialog-events.cpp \
dialogs/dialog-events.h \
dialogs/eek-color-def.h \
dialogs/eek-color-def.cpp \
dialogs/eek-preview.h \
dialogs/eek-preview.cpp \
dialogs/export.cpp \
dialogs/export.h \
dialogs/extensions.cpp \
dialogs/extensions.h \
dialogs/filedialog.cpp \
dialogs/filedialog.h \
dialogs/fill-style.cpp \
dialogs/fill-style.h \
dialogs/in-dt-coordsys.cpp \
dialogs/in-dt-coordsys.h \
dialogs/input.cpp \
dialogs/input.h \
dialogs/item-properties.cpp \
dialogs/item-properties.h \
dialogs/layer-properties.cpp \
dialogs/layer-properties.h \
dialogs/object-attributes.cpp \
dialogs/object-attributes.h \
dialogs/object-properties.cpp \
dialogs/object-properties.h \
dialogs/sp-attribute-widget.cpp \
dialogs/sp-attribute-widget.h \
dialogs/stroke-style.cpp \
dialogs/stroke-style.h \
dialogs/swatches.cpp \
dialogs/swatches.h \
dialogs/text-edit.cpp \
dialogs/text-edit.h \
dialogs/tiledialog.cpp \
dialogs/tiledialog.h \
dialogs/xml-tree.cpp \
dialogs/xml-tree.h \
dialogs/rdf.cpp \
dialogs/rdf.h \
dialogs/find.cpp \
dialogs/find.h \
dialogs/clonetiler.cpp \
dialogs/clonetiler.h \
dialogs/unclump.cpp \
dialogs/unclump.h \
dialogs/iconpreview.cpp \
dialogs/iconpreview.h
# dialogs/sp-widget.c \
# dialogs/sp-widget.h \
# dialogs/gradient-vector.c \
# dialogs/gradient-vector.h \
# dialogs/gradient-selector.c \
# dialogs/gradient-selector.h
|