blob: eb243723623770e9987a16459b085afb858cf04d (
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
|
MAINTAINERCLEANFILES = Makefile.in
CLEANFILES = *~ gmon.out *.gcov *.gcno *.gcda *.loT .keep *.epicfail
SUBDIRS =
AUTOMAKE_OPTIONS = 1.11 parallel-tests
eapis = \
0.conf \
1.conf \
2.conf \
3.conf \
4.conf \
exheres-0.conf \
paludis-1.conf \
pbin-1+0.conf \
pbin-1+1.conf \
pbin-1+2.conf \
pbin-1+3.conf \
pbin-1+4.conf \
pbin-1+paludis-1.conf \
pbin-1+exheres-0.conf
future_eapis =
eapidir = $(datadir)/paludis/eapis/
eapi_DATA = $(eapis)
EXTRA_DIST = $(eapis) $(future_eapis)
built-sources : $(BUILT_SOURCES)
for s in `echo $(SUBDIRS) | tr -d .` ; do $(MAKE) -C $$s built-sources || exit 1 ; done
|