repo.or.cz
/
linux
/
fpc-iii.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Revert "tty: hvc: Fix data abort due to race in hvc_open"
[linux/fpc-iii.git]
/
tools
/
testing
/
selftests
/
resctrl
/
Makefile
blob
d585cc1948cc741c40e8eac28ae7290cc0f918a8
1
CC
= $(
CROSS_COMPILE
)
gcc
2
CFLAGS
= -
g
-
Wall
3
SRCS
=$(
wildcard
*
.c
)
4
OBJS
=$(
SRCS
:
.c
=
.o
)
5
6
all
:
resctrl_tests
7
8
$(
OBJS
): $(
SRCS
)
9
$(
CC
) $(
CFLAGS
) -
c
$(
SRCS
)
10
11
resctrl_tests
: $(
OBJS
)
12
$(
CC
) $(
CFLAGS
) -
o
$
@
$
^
13
14
.PHONY
:
clean
15
16
clean
:
17
$(
RM
) $(
OBJS
)
resctrl_tests