mirror of
https://github.com/archlinux/aur.git
synced 2026-02-09 22:44:04 +01:00
25 lines
No EOL
630 B
Makefile
25 lines
No EOL
630 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# Makefile for the ntfs filesystem support.
|
|
#
|
|
|
|
export CONFIG_NTFS_FS := m
|
|
|
|
obj-$(CONFIG_NTFS_FS) += ntfs.o
|
|
|
|
ntfs-y := aops.o attrib.o collate.o dir.o file.o index.o inode.o \
|
|
mft.o mst.o namei.o runlist.o super.o unistr.o attrlist.o ea.o \
|
|
upcase.o bitmap.o lcnalloc.o logfile.o reparse.o compress.o \
|
|
iomap.o debug.o sysctl.o quota.o object_id.o bdev-io.o
|
|
|
|
ccflags-$(CONFIG_NTFS_DEBUG) += -DDEBUG
|
|
|
|
ccflags-$(CONFIG_NTFS_FS_POSIX_ACL) += -DCONFIG_NTFS_FS_POSIX_ACL
|
|
|
|
KDIR ?= /lib/modules/$(KVERSION)/build
|
|
|
|
all:
|
|
make -C $(KDIR) M=$(PWD) modules
|
|
|
|
clean:
|
|
make -C $(KDIR) M=$(PWD) clean
|