]> git.sur5r.net Git - u-boot/blob - fs/Makefile
Makefile: drop unused cpp_cfg macro
[u-boot] / fs / Makefile
1 # SPDX-License-Identifier: GPL-2.0+
2 #
3 # (C) Copyright 2000-2006
4 # Wolfgang Denk, DENX Software Engineering, wd@denx.de.
5 # Copyright (c) 2012, NVIDIA CORPORATION.  All rights reserved.
6
7 ifdef CONFIG_SPL_BUILD
8 obj-$(CONFIG_SPL_FAT_SUPPORT) += fat/
9 obj-$(CONFIG_SPL_EXT_SUPPORT) += ext4/
10 else
11 obj-y                           += fs.o
12
13 obj-$(CONFIG_FS_BTRFS) += btrfs/
14 obj-$(CONFIG_FS_CBFS) += cbfs/
15 obj-$(CONFIG_CMD_CRAMFS) += cramfs/
16 obj-$(CONFIG_FS_EXT4) += ext4/
17 obj-y += fat/
18 obj-$(CONFIG_FS_JFFS2) += jffs2/
19 obj-$(CONFIG_CMD_REISER) += reiserfs/
20 obj-$(CONFIG_SANDBOX) += sandbox/
21 obj-$(CONFIG_CMD_UBIFS) += ubifs/
22 obj-$(CONFIG_YAFFS2) += yaffs2/
23 obj-$(CONFIG_CMD_ZFS) += zfs/
24 endif
25 obj-y += fs_internal.o