• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# SPDX-License-Identifier: GPL-2.0-only
2
3obj-m := uio_ehci_pci.o
4
5all: uio_ehci_pci.c
6	@$(MAKE) -C/lib/modules/`uname -r`/build M=$(CURDIR) modules
7
8install:
9	@$(MAKE) -C/lib/modules/`uname -r`/build M=$(CURDIR) modules_install
10
11clean:
12	-@$(MAKE) -C/lib/modules/`uname -r`/build M=$(CURDIR) clean
13
14.PHONY: all install clean
15