blob: 5ec49453d4f58d8251148ed00ce0cfe4930f405d (
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
|
SUBDIRS = bookmarks
INCLUDES = \
-I$(top_srcdir)/embed \
-I$(top_srcdir)/lib \
-I$(top_srcdir)/lib/widgets \
-I$(top_srcdir)/lib/toolbar \
-I$(top_srcdir)/src/bookmarks \
$(WARN_CFLAGS) \
$(EPIPHANY_DEPENDENCY_CFLAGS) \
-DSHARE_DIR=\"$(pkgdatadir)\" \
-DDATADIR=\""$(datadir)"\" \
-DPIXMAP_DIR=\""$(datadir)/pixmaps"\" \
-DGNOMELOCALEDIR=\""$(datadir)/locale"\" \
-DG_DISABLE_DEPRECATED \
-DGDK_DISABLE_DEPRECATED \
-DGTK_DISABLE_DEPRECATED \
-DGDK_PIXBUF_DISABLE_DEPRECATED \
-DGNOME_DISABLE_DEPRECATED
bin_PROGRAMS = epiphany
CXXLD = $(CXX)
LINK = $(LIBTOOL) --mode=link $(CXXLD) $(AM_CFLAGS) $(CFLAGS) $(LDFLAGS) -o $@
ephy_automation_interface_idl_sources = \
EphyAutomation-common.c \
EphyAutomation-stubs.c \
EphyAutomation-skels.c \
EphyAutomation.h
if ENABLE_NAUTILUS_VIEW
nautilus_view_sources = \
ephy-nautilus-view.c \
ephy-nautilus-view.h
else
nautilus_view_sources =
endif
epiphany_SOURCES = \
$(ephy_automation_interface_idl_sources) \
$(nautilus_view_sources) \
ui-prefs.c \
ui-prefs.h \
prefs-dialog.c \
prefs-dialog.h \
toolbar.c \
toolbar.h \
statusbar.c \
statusbar.h \
ephy-main.c \
ephy-automation.c \
ephy-automation.h \
ephy-shell.c \
ephy-shell.h \
ephy-tab.c \
ephy-tab.h \
ephy-window.c \
ephy-window.h \
window-commands.c \
window-commands.h \
popup-commands.c \
popup-commands.h \
history-dialog.c \
history-dialog.h \
ppview-toolbar.c \
ppview-toolbar.h \
session.c \
session.h \
general-prefs.c \
general-prefs.h \
language-editor.c \
language-editor.h \
appearance-prefs.c \
appearance-prefs.h \
pdm-dialog.c \
pdm-dialog.h \
ephy-favorites-menu.c \
ephy-favorites-menu.h \
ephy-history-model.c \
ephy-history-model.h
epiphany_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= \
EphyAutomation.h EphyAutomation-common.c EphyAutomation-stubs.c EphyAutomation-skels.c
CLEAN_FILES = $(BUILT_SOURCES)
EphyAutomation-common.c EphyAutomation-stubs.c EphyAutomation-skels.c EphyAutomation.h: $(top_srcdir)/idl/EphyAutomation.idl
$(ORBIT_IDL) -I $(LIBBONOBO_IDL) -I $(BONOBO_ACTIVATION_IDL) $(top_srcdir)/idl/EphyAutomation.idl
EXTRA_DIST = $(top_srcdir)/idl/EphyAutomation.idl
|