aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Makefile.am
blob: a0473e8705e4e01f7f1cac29f9dda577b130d8fd (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
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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
SUBDIRS = widgets egg

noinst_LTLIBRARIES = libephymisc.la

headerdir = $(prefix)/include/epiphany/@EPIPHANY_MAJOR@/epiphany
header_DATA = \
    ephy-lib-type-builtins.h    \
    $(INST_H_FILES)

NOINST_H_FILES = \
    eel-gconf-extensions.h          \
    ephy-debug.h                \
    ephy-dnd.h              \
    ephy-file-chooser.h         \
    ephy-file-helpers.h         \
    ephy-glade.h                \
    ephy-gui.h              \
    ephy-langs.h                \
    ephy-module.h               \
    ephy-node-filter.h          \
    ephy-node-common.h          \
    ephy-object-helpers.h           \
    ephy-prefs.h                \
    ephy-shlib-loader.h         \
    ephy-signal-accumulator.h       \
    ephy-string.h               \
    ephy-stock-icons.h          \
    ephy-zoom.h

TYPES_H_FILES = \
    ephy-dbus.h             \
    ephy-node.h             \
    ephy-state.h

INST_H_FILES = \
    ephy-dbus.h             \
    ephy-dialog.h               \
    ephy-loader.h               \
    ephy-node.h             \
    ephy-node-db.h              \
    ephy-state.h

libephymisc_la_SOURCES = \
    eel-gconf-extensions.c          \
    ephy-dbus.c             \
    ephy-debug.c                \
    ephy-dialog.c               \
    ephy-dnd.c              \
    ephy-file-chooser.c         \
    ephy-file-helpers.c         \
    ephy-glade.c                \
    ephy-gui.c              \
    ephy-langs.c                \
    ephy-loader.c               \
    ephy-module.c               \
    ephy-node.c             \
    ephy-node.h             \
    ephy-node-filter.c          \
    ephy-node-common.h          \
    ephy-node-db.c              \
    ephy-object-helpers.c           \
    ephy-prefs.h                \
    ephy-shlib-loader.c         \
    ephy-signal-accumulator.c       \
    ephy-state.c                \
    ephy-string.c               \
    ephy-stock-icons.c          \
    ephy-zoom.c             \
    $(INST_H_FILES)             \
    $(NOINST_H_FILES)           \
    $(BUILT_SOURCES)

libephymisc_la_CPPFLAGS = \
    -I$(top_builddir)/lib           \
    -DSHARE_DIR=\"$(pkgdatadir)\"       \
    $(AM_CPPFLAGS)

libephymisc_la_CFLAGS = \
        $(DEPENDENCIES_CFLAGS)  \
        $(DBUS_CFLAGS)      \
    $(AM_CFLAGS)

libephymisc_la_LIBADD = \
    $(DBUS_LIBS)

BUILT_SOURCES = \
    ephy-lib-type-builtins.c    \
    ephy-lib-type-builtins.h    \
    ephy-marshal.c          \
    ephy-marshal.h

CLEANFILES = $(stamp_files) $(BUILT_SOURCES)
DISTCLEANFILES = $(stamp_files) $(BUILT_SOURCES)
MAINTAINERCLEANFILES = $(stamp_files) $(BUILT_SOURCES)

stamp_files = \
    stamp-ephy-lib-type-builtins.c  \
    stamp-ephy-lib-type-builtins.h  \
    stamp-ephy-marshal.c        \
    stamp-ephy-marshal.h

ephy-marshal.c: stamp-ephy-marshal.c
    @true
stamp-ephy-marshal.c: ephy-marshal.list
    $(GLIB_GENMARSHAL) --prefix=ephy_marshal $(srcdir)/ephy-marshal.list --header --body > ephy-marshal.c \
    && echo timestamp > $(@F)

ephy-marshal.h: stamp-ephy-marshal.h
    @true
stamp-ephy-marshal.h: ephy-marshal.list
    $(GLIB_GENMARSHAL) --prefix=ephy_marshal $(srcdir)/ephy-marshal.list --header > ephy-marshal.h \
    && echo timestamp > $(@F)

ephy-lib-type-builtins.c: stamp-ephy-lib-type-builtins.c
    @true
stamp-ephy-lib-type-builtins.c: $(TYPES_H_FILES)
    ( cd $(srcdir) && $(GLIB_MKENUMS) \
        --fhead "#include \"ephy-lib-type-builtins.h\"\n\n" \
        --fprod "\n/* enumerations from \"@filename@\" */" \
        --fprod "\n#include \"@filename@\"" \
        --vhead "static const G@Type@Value _@enum_name@_values[] = {" \
        --vprod "  { @VALUENAME@, \"@VALUENAME@\", \"@valuenick@\" }," \
        --vtail "  { 0, NULL, NULL }\n};\n\n" \
        --vtail "GType\n@enum_name@_get_type (void)\n{\n" \
        --vtail "  static GType type = 0;\n\n" \
        --vtail "  if (G_UNLIKELY (type == 0))\n" \
        --vtail "    type = g_@type@_register_static (\"@EnumName@\", _@enum_name@_values);\n\n" \
        --vtail "  return type;\n}\n\n" \
        $(^F) ) > xgen-$(@F) \
    && ( cmp -s xgen-$(@F) $(@F:stamp-%=%) || cp xgen-$(@F) $(@F:stamp-%=%) ) \
    && rm -f xgen-$(@F) \
    && echo timestamp > $(@F)

ephy-lib-type-builtins.h: stamp-ephy-lib-type-builtins.h
    @true
stamp-ephy-lib-type-builtins.h: $(TYPES_H_FILES)
    ( cd $(srcdir) && $(GLIB_MKENUMS) \
        --fhead "#ifndef EPHY_LIB_TYPE_BUILTINS_H\n" \
        --fhead "#define EPHY_LIB_TYPE_BUILTINS_H 1\n\n" \
        --fhead "#include <glib-object.h>\n\n" \
        --fhead "G_BEGIN_DECLS\n\n" \
        --ftail "G_END_DECLS\n\n" \
        --ftail "#endif /* EPHY_LIB_TYPE_BUILTINS_H */\n" \
        --fprod "\n/* --- @filename@ --- */" \
        --eprod "#define EPHY_TYPE_@ENUMSHORT@ @enum_name@_get_type()\n" \
        --eprod "GType @enum_name@_get_type (void);\n" \
        $(^F) ) > xgen-$(@F) \
    && ( cmp -s xgen-$(@F) $(@F:stamp-%=%) || cp xgen-$(@F) $(@F:stamp-%=%) ) \
    && rm -f xgen-$(@F) \
    && echo timestamp > $(@F)

EXTRA_DIST =            \
    ephy-marshal.list