blob: cb347478bf9b717c98ee5b61e16a9c653c2dc183 (
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
|
## Process this file with automake to produce Makefile.in
SUBDIRS=
bin_PROGRAMS = glade-3
lib_LTLIBRARIES = libgladeui-1.la
gladegtk_LTLIBRARIES = libgladegtk.la
gladegtkdir = $(glade_modulesdir)
BUILT_SOURCES = \
glade-marshallers.c \
glade-marshallers.h \
glade-paths.h
CLEANFILES = $(BUILT_SOURCES)
EXTRA_DIST = glade-marshallers.list
libgladegtk_la_SOURCES = glade-gtk.c
libgladegtk_la_LDFLAGS = -module -avoid-version
libgladegtk_la_LIBADD = libgladeui-1.la $(GLADE_LIBS)
AM_CFLAGS = -g -Wall \
-I$(top_srcdir) \
-I$(top_builddir) \
$(GLADE_CFLAGS)
glade_3_LDADD = libgladeui-1.la
glade_3_SOURCES = \
glade-project-window.c glade-project-window.h \
main.c
libgladeui_1_la_SOURCES = \
glade-debug.c \
glade-project.c \
glade-parameter.c \
glade-placeholder.c \
glade-project-view.c \
glade-widget-class.c \
glade-xml-utils.c \
glade-palette.c \
glade-cursor.c \
glade-property.c \
glade-property-class.c \
glade-popup.c \
glade-widget.c \
glade-catalog.c \
glade-editor-property.c \
glade-editor.c \
glade-utils.c \
glade-signal.c \
glade-signal-editor.c \
glade-clipboard.c \
glade-clipboard-view.c \
glade-command.c \
glade-id-allocator.c \
glade-marshallers.c \
glade-accumulators.c \
glade-parser.c \
glade-builtins.c \
glade-fixed-manager.c \
glade-app.c
libgladeui_1_la_CFLAGS = -DINSIDE_LIBGLADEUI $(AM_CFLAGS)
libgladeui_1_la_LDFLAGS = -version-info $(GLADE_CURRENT):$(GLADE_REVISION):$(GLADE_AGE)
libgladeui_1_la_LIBADD = $(GLADE_LIBS)
libgladeuiincludedir=$(includedir)/libgladeui-1.0/libgladeui
libgladeuiinclude_HEADERS = \
glade.h \
glade-debug.h \
glade-project.h \
glade-project-view.h \
glade-parameter.h \
glade-placeholder.h \
glade-editor.h \
glade-editor-property.h \
glade-signal-editor.h \
glade-palette.h \
glade-cursor.h \
glade-widget.h \
glade-widget-class.h \
glade-property.h \
glade-property-class.h \
glade-popup.h \
glade-catalog.h \
glade-utils.h \
glade-signal.h \
glade-xml-utils.h \
glade-clipboard.h \
glade-clipboard-view.h \
glade-command.h \
glade-id-allocator.h \
glade-marshallers.h \
glade-accumulators.h \
glade-parser.h \
glade-app.h \
glade-builtins.h \
glade-fixed-manager.h \
fixed_bg.xpm
pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = libgladeui-1.0.pc
if WITH_WIN32
libgladegtk_la_LDFLAGS += -no-undefined
libgladeui_1_la_LDFLAGS += -no-undefined
endif
#
# Marshaller generation
#
glade-marshallers.h: glade-marshallers.list $(GLIB_GENMARSHAL)
$(GLIB_GENMARSHAL) --prefix=glade_marshal $(srcdir)/glade-marshallers.list --header > glade-marshallers-h.tmp \
&& mv glade-marshallers-h.tmp glade-marshallers.h \
|| ( rm -f glade-marshallers-h.tmp && exit 1)
glade-marshallers.c: glade-marshallers.list $(GLIB_GENMARSHAL)
$(GLIB_GENMARSHAL) --prefix=glade_marshal $(srcdir)/glade-marshallers.list --body > glade-marshallers-c.tmp \
&& mv glade-marshallers-c.tmp glade-marshallers.c \
|| ( rm -f glade-marshallers-c.tmp && exit 1 )
glade-paths.h: glade-paths.sh
@sh $< > $@.tmp ; \
if cmp -s $@.tmp $@; then \
rm $@.tmp; \
else \
mv $@.tmp $@ ; echo updated glade-paths.h ; \
fi
|