mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-15 16:24:13 +08:00
884d179dff
Quota subsystem has more and more files. It's time to create a dir for it. Signed-off-by: Jan Kara <jack@suse.cz>
15 lines
341 B
Makefile
15 lines
341 B
Makefile
#
|
|
# Makefile for the Linux filesystems.
|
|
#
|
|
# 14 Sep 2000, Christoph Hellwig <hch@infradead.org>
|
|
# Rewritten to use lists instead of if-statements.
|
|
#
|
|
|
|
obj-y :=
|
|
|
|
obj-$(CONFIG_QUOTA) += dquot.o
|
|
obj-$(CONFIG_QFMT_V1) += quota_v1.o
|
|
obj-$(CONFIG_QFMT_V2) += quota_v2.o
|
|
obj-$(CONFIG_QUOTA_TREE) += quota_tree.o
|
|
obj-$(CONFIG_QUOTACTL) += quota.o
|