Files
linux-apfs-rw/Makefile
T
Stan Skowronek 16c9c4f9b1 Support read of zlib-compressed files
[ernesto: silenced sparse, used bool type, added commit title]

Signed-off-by: Ernesto A. Fernández <ernesto@corellium.com>
2021-04-07 17:45:52 -03:00

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