Skip to content

Commit aa814c5

Browse files
shuahkhrostedt
authored andcommitted
tools/tracing: Update Makefile to build rtla
Update tracing Makefile to build/install/clean rtla tragets. Link: https://lkml.kernel.org/r/[email protected] Reviewed-by: Daniel Bristot de Oliveira <[email protected]> Signed-off-by: Shuah Khan <[email protected]> Signed-off-by: Steven Rostedt (Google) <[email protected]>
1 parent 2201aea commit aa814c5

File tree

1 file changed

+14
-4
lines changed

1 file changed

+14
-4
lines changed

tools/tracing/Makefile

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# SPDX-License-Identifier: GPL-2.0
22
include ../scripts/Makefile.include
33

4-
all: latency
4+
all: latency rtla
55

6-
clean: latency_clean
6+
clean: latency_clean rtla_clean
77

8-
install: latency_install
8+
install: latency_install rtla_install
99

1010
latency:
1111
$(call descend,latency)
@@ -16,4 +16,14 @@ latency_install:
1616
latency_clean:
1717
$(call descend,latency,clean)
1818

19-
.PHONY: all install clean latency latency_install latency_clean
19+
rtla:
20+
$(call descend,rtla)
21+
22+
rtla_install:
23+
$(call descend,rtla,install)
24+
25+
rtla_clean:
26+
$(call descend,rtla,clean)
27+
28+
.PHONY: all install clean latency latency_install latency_clean \
29+
rtla rtla_install rtla_clean

0 commit comments

Comments
 (0)