You've already forked linux-apfs-rw
mirror of
https://github.com/linux-apfs/linux-apfs-rw.git
synced 2026-05-01 15:01:34 -07:00
16c9c4f9b1
[ernesto: silenced sparse, used bool type, added commit title] Signed-off-by: Ernesto A. Fernández <ernesto@corellium.com>
17 lines
464 B
Makefile
17 lines
464 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# Makefile for the out-of-tree Linux APFS module.
|
|
#
|
|
|
|
KERNELRELEASE ?= $(shell uname -r)
|
|
|
|
obj-m = apfs.o
|
|
apfs-y := btree.o compress.o dir.o extents.o file.o inode.o key.o message.o \
|
|
namei.o node.o object.o spaceman.o super.o symlink.o transaction.o \
|
|
unicode.o xattr.o xfield.o
|
|
|
|
default:
|
|
make -C /lib/modules/$(KERNELRELEASE)/build M=$(shell pwd)
|
|
clean:
|
|
make -C /lib/modules/$(KERNELRELEASE)/build M=$(shell pwd) clean
|