coreboot-kgpe-d16/util/uio_usbdebug/linux/Makefile
Patrick Georgi 1afe286367 util: Add SPDX header, replacing boiler plate where applicable
In a few cases a license was added: Stuff coming from Linux is
"GPL-2.0" (not GPL-2.0-only!), build-release is by me and got the
usual GPL-2.0-only treatment. uio_usbdebug and spkmodem had their
licenses propagate to all their files.

Change-Id: Ia5712bbaa417cb9e937834512351fcc0acfa16be
Signed-off-by: Patrick Georgi <pgeorgi@google.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/41202
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Reviewed-by: HAOUAS Elyes <ehaouas@noos.fr>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
2020-05-11 17:11:59 +00:00

14 lines
324 B
Makefile

# SPDX-License-Identifier: GPL-2.0-only
obj-m := uio_ehci_pci.o
all: uio_ehci_pci.c
@$(MAKE) -C/lib/modules/`uname -r`/build M=$(CURDIR) modules
install:
@$(MAKE) -C/lib/modules/`uname -r`/build M=$(CURDIR) modules_install
clean:
-@$(MAKE) -C/lib/modules/`uname -r`/build M=$(CURDIR) clean
.PHONY: all install clean