-
Notifications
You must be signed in to change notification settings - Fork 10
/
Makefile.am
69 lines (56 loc) · 1.53 KB
/
Makefile.am
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
ACLOCAL_AMFLAGS = -I m4
NULL =
bin_SCRIPTS = eolie
SUBDIRS = src data python-webextension
EXTRA_DIST = \
eolie.in\
python-webextension/extension.py.in\
$(NULL)
webkitextensiondir = $(datadir)/eolie/webkitextension
webkitextension_DATA = python-webextension/pythonloader.so python-webextension/extension.py
CLEANFILES = \
$(bin_SCRIPTS)\
$(NULL)
MAINTAINERCLEANFILES = \
$(srcdir)/AUTHORS \
$(srcdir)/INSTALL \
$(srcdir)/aclocal.m4 \
$(srcdir)/autoscan.log \
$(srcdir)/compile \
$(srcdir)/config.guess \
$(srcdir)/config.h.in \
$(srcdir)/config.sub \
$(srcdir)/configure.scan \
$(srcdir)/depcomp \
$(srcdir)/install-sh \
$(srcdir)/ltmain.sh \
$(srcdir)/missing \
$(srcdir)/mkinstalldirs \
$(NULL)
GITIGNOREFILES = \
m4 \
$(NULL)
python-webextension/extension.py: python-webextension/extension.py.in Makefile
$(AM_V_GEN)sed \
-e s!\@pythondir\@!$(pythondir)! \
-e s!\@pyexecdir\@!$(pyexecdir)! \
< $< > $@
chmod a+x $@
eolie: eolie.in Makefile
$(AM_V_GEN)sed \
-e s!\@srcdir\@!$(abs_top_srcdir)! \
-e s!\@prefix\@!$(prefix)! \
-e s!\@datadir\@!$(datadir)! \
-e s!\@pkgdatadir\@!$(pkgdatadir)! \
-e s!\@libexecdir\@!$(libexecdir)! \
-e s!\@libdir\@!$(libdir)! \
-e s!\@pkglibdir\@!$(pkglibdir)! \
-e s!\@localedir\@!$(localedir)! \
-e s!\@pythondir\@!$(pythondir)! \
-e s!\@pyexecdir\@!$(pyexecdir)! \
-e s!\@PACKAGE\@!$(PACKAGE)! \
-e s!\@VERSION\@!$(VERSION)! \
< $< > $@
chmod a+x $@
all-local: eolie
-include $(top_srcdir)/git.mk