]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - fs/Makefile
Makefile: move fs/fat/ entry to drivers/Makefile
[karo-tx-uboot.git] / fs / Makefile
1 #
2 # (C) Copyright 2000-2006
3 # Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 # Copyright (c) 2012, NVIDIA CORPORATION.  All rights reserved.
5 #
6 # SPDX-License-Identifier:      GPL-2.0+
7 #
8
9 ifdef CONFIG_SPL_BUILD
10 obj-$(CONFIG_SPL_FAT_SUPPORT) += fat/
11 else
12 obj-y                           += fs.o
13
14 obj-y += cbfs/
15 obj-y += cramfs/
16 obj-y += ext4/
17 obj-y += fat/
18 obj-y += fdos/
19 obj-y += jffs2/
20 obj-y += reiserfs/
21 obj-y += sandbox/
22 obj-y += ubifs/
23 obj-y += yaffs2/
24 obj-y += zfs/
25 endif