blob: f6fb6036f1103a8c69a78ef3ee077389b1d0f0e0 (
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
|
webextension_LTLIBRARIES = libephywebextension.la
webextensiondir = \
$(libdir)/epiphany/$(EPIPHANY_MAJOR)/web-extensions
libephywebextension_la_SOURCES = \
ephy-web-extension.c \
ephy-web-extension.h \
$(top_srcdir)/embed/uri-tester.c \
$(top_srcdir)/embed/uri-tester.h \
$(top_srcdir)/lib/ephy-debug.c \
$(top_srcdir)/lib/ephy-debug.h \
$(top_srcdir)/lib/ephy-settings.c \
$(top_srcdir)/lib/ephy-settings.h \
$(top_srcdir)/lib/ephy-web-dom-utils.c \
$(top_srcdir)/lib/ephy-web-dom-utils.h
libephywebextension_la_CPPFLAGS = \
-I$(top_srcdir)/embed \
-I$(top_srcdir)/lib \
$(AM_CPPFLAGS)
libephywebextension_la_CFLAGS = \
$(WEB_EXTENSION_CFLAGS)
libephywebextension_la_LIBADD = \
$(WEB_EXTENSION_LIBS)
libephywebextension_la_LDFLAGS = \
-module -avoid-version -no-undefined
|