blob: e2d678bb76b6e6582a431132de0a2c146ebaf3ca (
plain) (
blame)
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
|
INCLUDES = \
$(EPIPHANY_DEPENDENCY_CFLAGS) \
-DGTK_DISABLE_DEPRECATED \
-DGDK_DISABLE_DEPRECATED \
-DG_DISABLE_DEPRECATED
noinst_LTLIBRARIES = libegg.la
EGGSOURCES = \
egg-action.c \
egg-action-group.c \
egg-toggle-action.c \
eggtreemodelfilter.c \
eggtreemultidnd.c \
egg-radio-action.c \
egg-menu-merge.c \
egg-accel-dialog.c \
eggradiotoolbutton.c \
eggtoggletoolbutton.c \
eggtoolitem.c \
eggseparatortoolitem.c \
eggtoolbar.c \
eggtoolbutton.c \
egg-editable-toolbar.c \
egg-toolbars-model.c \
egg-toolbar-editor.c
libegg_la_SOURCES = \
$(EGGSOURCES) \
eggmarshalers.c
EGGHEADERS = \
eggtreemodelfilter.h \
eggtreemultidnd.h \
egg-menu.h \
egg-action.h \
egg-action-group.h \
egg-toggle-action.h \
egg-radio-action.h \
egg-menu-merge.h \
egg-accel-dialog.h \
eggradiotoolbutton.h \
eggtoggletoolbutton.h \
eggtoolitem.h \
eggseparatortoolitem.h \
eggtoolbar.h \
eggtoolbutton.h \
egg-editable-toolbar.h \
egg-toolbars-model.h \
egg-toolbar-editor.h
noinst_HEADERS = \
$(EGGHEADERS) \
eggmarshalers.h \
eggintl.h
eggmarshalers.h:
cd $(srcdir) \
&& $(GLIB_GENMARSHAL) --prefix=_egg_marshal eggmarshalers.list --header > xgen-emh \
&& cp xgen-emh eggmarshalers.h \
&& rm -f xgen-emh xgen-emh~
eggmarshalers.c:
cd $(srcdir) \
&& $(GLIB_GENMARSHAL) --prefix=_egg_marshal eggmarshalers.list --body > xgen-emc \
&& cp xgen-emc eggmarshalers.c \
&& rm -f xgen-emc xgen-emc~
egg-marshal.c: eggmarshalers.h eggmarshalers.c
EXTRA_DIST= \
eggmarshalers.list
EGGFILES=$(EGGSOURCES) $(EGGHEADERS)
EGGDIR=$(srcdir)/../../../libegg/libegg
regenerate-built-sources:
EGGFILES="$(EGGFILES) eggmarshalers.list" EGGDIR="$(EGGDIR)" $(srcdir)/update-from-egg.sh
|