- # SPDX-License-Identifier: GPL-2.0-only
- #
- # Makefile for the rtc-ds13307 driver
- #
- ifneq ($(KERNELRELEASE),)
- obj-m := rtc-ds13307.o
- else
- KDIR := /lib/modules/$(shell uname -r)/build
- PWD := $(shell pwd)
- default:
- $(MAKE) -C $(KDIR) M=$(PWD) modules
- endif
|