summaryrefslogtreecommitdiff
path: root/embed/Makefile.am
blob: cbe2d822d8bb57bbe8074dd7e17f30488804b445 (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
129
130
131
132
133
SUBDIRS = web-extension

noinst_LTLIBRARIES = \
	libephyembed.la

TYPES_H_FILES = \
	ephy-download.h			\
	ephy-embed-shell.h		\
	ephy-web-view.h

BUILT_SOURCES = \
	ephy-embed-type-builtins.c	\
	ephy-embed-type-builtins.h

libephyembed_la_SOURCES = \
	ephy-about-handler.c		\
	ephy-about-handler.h		\
	ephy-downloads-manager.c	\
	ephy-downloads-manager.h	\
	ephy-download.c			\
	ephy-download.h			\
	ephy-embed.c			\
	ephy-embed.h			\
	ephy-embed-container.c          \
	ephy-embed-container.h		\
	ephy-embed-event.c		\
	ephy-embed-event.h		\
	ephy-embed-prefs.c		\
	ephy-embed-prefs.h		\
	ephy-embed-shell.c		\
	ephy-embed-shell.h		\
	ephy-embed-utils.c              \
	ephy-embed-utils.h		\
	ephy-encoding.c			\
	ephy-encoding.h			\
	ephy-encodings.c		\
	ephy-encodings.h		\
	ephy-file-monitor.c		\
	ephy-file-monitor.h		\
	ephy-find-toolbar.c		\
	ephy-find-toolbar.h		\
	ephy-notification-container.c	\
	ephy-notification-container.h	\
	ephy-web-view.c			\
	ephy-web-view.h			\
	ephy-web-extension-proxy.c	\
	ephy-web-extension-proxy.h

nodist_libephyembed_la_SOURCES = \
	$(BUILT_SOURCES)

libephyembed_la_CFLAGS = \
	$(WARN_CFLAGS)

libephyembed_la_CPPFLAGS = \
	-I$(top_builddir)/lib			\
	-I$(top_builddir)/lib/widgets		\
	-I$(top_srcdir)/lib			\
	-I$(top_srcdir)/lib/egg			\
	-I$(top_srcdir)/lib/history		\
	-I$(top_srcdir)/lib/widgets		\
	-I$(top_srcdir)/libgd			\
	-DPKGDATADIR=\"$(pkgdatadir)\"		\
	-DEPHY_WEB_EXTENSIONS_DIR=\"$(pkglibdir)/web-extensions\"	\
	$(GDK_CFLAGS)				\
	$(GIO_CFLAGS)				\
	$(GLIB_CFLAGS)				\
	$(GTK_CFLAGS)				\
	$(HTTPSEVERYWHERE_CFLAGS)		\
	$(LIBSECRET_CFLAGS)			\
	$(LIBSOUP_CFLAGS)			\
	$(WEBKIT2GTK_CFLAGS)

libephyembed_la_LDFLAGS = \
	$(WARN_LDFLAGS)

libephyembed_la_LIBADD = \
	$(GDK_LIBS)		\
	$(GIO_LIBS)		\
	$(GLIB_LIBS)		\
	$(GTK_LIBS)		\
	$(HTTPSEVERYWHERE_LIBS)	\
	$(LIBM)			\
	$(LIBSECRET_LIBS)	\
	$(LIBSOUP_LIBS)		\
	$(WEBKIT2GTK_LIBS)

CLEANFILES = $(stamp_files) $(BUILT_SOURCES)

stamp_files = \
	stamp-ephy-embed-type-builtins.c	\
	stamp-ephy-embed-type-builtins.h

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

ephy-embed-type-builtins.h: stamp-ephy-embed-type-builtins.h Makefile
	@true
stamp-ephy-embed-type-builtins.h: Makefile $(TYPES_H_FILES)
	$(AM_V_GEN) $(GLIB_MKENUMS) \
		--fhead "#ifndef EPHY_EMBED_TYPE_BUILTINS_H\n" \
		--fhead "#define EPHY_EMBED_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_EMBED_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" \
		$(filter-out $<,$^) > xgen-$(@F) \
	&& ( cmp -s xgen-$(@F) $(@F:stamp-%=%) || cp xgen-$(@F) $(@F:stamp-%=%) ) \
	&& rm -f xgen-$(@F) \
	&& echo timestamp > $(@F)

-include $(top_srcdir)/git.mk