Sign in
android-kvm
/
linux
/
2ecbc1f684482b4ed52447a39903bd9b0f222898
/
.
/
tools
/
testing
/
selftests
/
resctrl
/
Makefile
blob: d585cc1948cc741c40e8eac28ae7290cc0f918a8 [
file
] [
log
] [
blame
]
CC
=
$
(
CROSS_COMPILE
)
gcc
CFLAGS
=
-
g
-
Wall
SRCS
=
$
(
wildcard
*.
c
)
OBJS
=
$
(
SRCS
:.
c
=.
o
)
all
:
resctrl_tests
$
(
OBJS
):
$
(
SRCS
)
$
(
CC
)
$
(
CFLAGS
)
-
c $
(
SRCS
)
resctrl_tests
:
$
(
OBJS
)
$
(
CC
)
$
(
CFLAGS
)
-
o $@ $
^
.
PHONY
:
clean
clean
:
$
(
RM
)
$
(
OBJS
)
resctrl_tests