repo.or.cz
/
cris-mirror.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Linux 3.11-rc3
[cris-mirror.git]
/
tools
/
testing
/
selftests
/
Makefile
blob
4cb14cae37911ddbf41ee81fb46301b53ea144fb
1
TARGETS
=
breakpoints
2
TARGETS
+=
cpu-hotplug
3
TARGETS
+=
efivarfs
4
TARGETS
+=
kcmp
5
TARGETS
+=
memory-hotplug
6
TARGETS
+=
mqueue
7
TARGETS
+=
net
8
TARGETS
+=
ptrace
9
TARGETS
+=
timers
10
TARGETS
+=
vm
11
12
all
:
13
for TARGET in
$(
TARGETS
);
do \
14
make
-
C
$
$TARGET
;
\
15
done
;
16
17
run_tests
:
all
18
for TARGET in
$(
TARGETS
);
do \
19
make
-
C
$
$TARGET
run_tests
;
\
20
done
;
21
22
clean
:
23
for TARGET in
$(
TARGETS
);
do \
24
make
-
C
$
$TARGET
clean
;
\
25
done
;