blob: 027ef730f79562f6309401f4639f311ebd122b80 (
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
|
eselectlibsdir = $(datadir)/$(PACKAGE_NAME)/libs/
eselectlibs_DATA = \
config.bash \
core.bash \
default.eselect \
editor-variable.bash \
manip.bash \
multilib.bash \
output.bash \
package-manager.bash \
path-manipulation.bash \
skel.bash \
tests.bash
EXTRA_DIST = \
config.bash.in \
core.bash.in \
default.eselect.in \
editor-variable.bash.in \
manip.bash.in \
multilib.bash.in \
output.bash.in \
package-manager.bash.in \
path-manipulation.bash.in \
skel.bash.in \
tests.bash.in
dosed = @SED@ \
-e 's%\@SED\@%@SED@%g' \
-e 's%\@PORTAGEQ\@%@PORTAGEQ@%g' \
-e 's%\@ENV_UPDATE\@%@ENV_UPDATE@%g' \
-e 's%\@CANONICALISE\@%@CANONICALISE@%g'
%.bash : %.bash.in
@$(dosed) $< > $@
%.eselect : %.eselect.in
cp $? $@
MAINTAINERCLEANFILES = Makefile.in
CLEANFILES = $(eselectlibs_DATA)
|