repo.or.cz
/
cor.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
split dev_queue
[cor.git]
/
tools
/
debugging
/
Makefile
blob
e2b7c1a6fb8f13e6f5d41971b41dceb6498632c9
1
# SPDX-License-Identifier: GPL-2.0
2
# Makefile for debugging tools
3
4
PREFIX ?
= /
usr
5
BINDIR ?
=
bin
6
INSTALL ?
=
install
7
8
TARGET
=
kernel-chktaint
9
10
all
: $(
TARGET
)
11
12
clean
:
13
14
install
:
kernel-chktaint
15
$(
INSTALL
) -
D
-
m
755
$(
TARGET
) $(
DESTDIR
)$(
PREFIX
)/$(
BINDIR
)/$(
TARGET
)
16