]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blame - tools/debugging/Makefile
Merge tag 'iwlwifi-for-kalle-2019-03-22' of git://git.kernel.org/pub/scm/linux/kernel...
[mirror_ubuntu-jammy-kernel.git] / tools / debugging / Makefile
CommitLineData
4ab5a5d2
TL
1# SPDX-License-Identifier: GPL-2.0
2# Makefile for debugging tools
3
4PREFIX ?= /usr
5BINDIR ?= bin
6INSTALL ?= install
7
8TARGET = kernel-chktaint
9
10all: $(TARGET)
11
12clean:
13
14install: kernel-chktaint
15 $(INSTALL) -D -m 755 $(TARGET) $(DESTDIR)$(PREFIX)/$(BINDIR)/$(TARGET)
16