blob: cbe0fcb79dccdaad27d1daee80917d07bb300d9a (
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
|
SUBDIRS = bookmarks
INCLUDES = \
-I$(top_srcdir)/embed \
-I$(top_srcdir)/lib \
-I$(top_srcdir)/lib/egg \
-I$(top_srcdir)/lib/widgets \
-I$(top_srcdir)/src/bookmarks \
$(WARN_CFLAGS) \
$(EPIPHANY_DEPENDENCY_CFLAGS) \
-DSHARE_DIR=\"$(pkgdatadir)\" \
-DPLUGINS_DIR=\""$(libdir)/epiphany/plugins"\" \
-DDATADIR=\""$(datadir)"\" \
-DPIXMAP_DIR=\""$(datadir)/pixmaps"\" \
-DGNOMELOCALEDIR=\""$(datadir)/locale"\" \
-DG_DISABLE_DEPRECATED \
-DGDK_DISABLE_DEPRECATED \
-DGDK_PIXBUF_DISABLE_DEPRECATED \
-DGNOME_DISABLE_DEPRECATED
bin_PROGRAMS = epiphany-bin
bin_SCRIPTS = epiphany
CXXLD = $(CXX)
LINK = $(LIBTOOL) --mode=link $(CXXLD) $(AM_CFLAGS) $(CFLAGS) $(LDFLAGS) -o $@
CORBA_SOURCE = \
EphyAutomation-common.c \
EphyAutomation-stubs.c \
EphyAutomation-skels.c \
EphyAutomation.h
idls = $(top_srcdir)/idl/EphyAutomation.idl
idl_flags = -I$(LIBBONOBO_IDL) -I$(BONOBO_ACTIVATION_IDL)
$(CORBA_SOURCE): $(idls) $(ORBIT_IDL)
$(ORBIT_IDL) $(idl_flags) $(idls)
if ENABLE_NAUTILUS_VIEW
nautilus_view_sources = \
ephy-nautilus-view.c \
ephy-nautilus-view.h
else
nautilus_view_sources =
endif
headerdir = $(prefix)/include/epiphany-@EPIPHANY_MAJOR@/epiphany
header_DATA = $(INST_H_FILES)
NOINST_H_FILES = \
ephy-automation.h \
ephy-encoding-dialog.h \
ephy-encoding-menu.h \
ephy-favicon-action.h \
ephy-favorites-menu.h \
ephy-go-action.h \
ephy-history-window.h \
ephy-location-action.h \
ephy-navigation-action.h \
ephy-plugin.h \
ephy-tabs-menu.h \
ephy-toolbars-model.h \
language-editor.h \
pdm-dialog.h \
popup-commands.h \
prefs-dialog.h \
ppview-toolbar.h \
statusbar.h \
toolbar.h \
window-commands.h
INST_H_FILES = \
ephy-notebook.h \
ephy-shell.h \
ephy-tab.h \
ephy-window.h \
session.h
epiphany_bin_SOURCES = \
$(CORBA_SOURCE) \
$(nautilus_view_sources) \
ephy-automation.c \
ephy-completion-model.c \
ephy-completion-model.h \
ephy-encoding-dialog.c \
ephy-encoding-menu.c \
ephy-favicon-action.c \
ephy-favorites-menu.c \
ephy-go-action.c \
ephy-history-window.c \
ephy-location-action.c \
ephy-main.c \
ephy-navigation-action.c \
ephy-notebook.c \
ephy-plugin.c \
ephy-shell.c \
ephy-tab.c \
ephy-tab.h \
ephy-tabs-menu.c \
ephy-toolbars-model.c \
ephy-toolbars-model.h \
ephy-window.c \
language-editor.c \
pdm-dialog.c \
popup-commands.c \
prefs-dialog.c \
ppview-toolbar.c \
session.c \
statusbar.c \
toolbar.c \
window-commands.c \
$(INST_H_FILES) \
$(NOINST_H_FILES)
epiphany_bin_LDADD = \
$(top_builddir)/embed/libephyembed.la \
$(top_builddir)/lib/libephy.la \
$(top_builddir)/src/bookmarks/libephybookmarks.la \
$(MOZILLA_COMPONENT_LIBS) \
$(EPIPHANY_DEPENDENCY_LIBS) \
$(INTLLIBS)
BUILT_SOURCES = $(CORBA_SOURCE)
CLEANFILES = $(CORBA_SOURCE)
EXTRA_DIST = $(top_srcdir)/idl/EphyAutomation.idl
dist-hook:
cd $(distdir); rm -f $(BUILT_SOURCES)
|