]> git.ipfire.org Git - people/ms/u-boot.git/blame - fs/Makefile
Makefile: move fs/fat/ entry to drivers/Makefile
[people/ms/u-boot.git] / fs / Makefile
CommitLineData
045fa1e1
SW
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#
1a459660 6# SPDX-License-Identifier: GPL-2.0+
045fa1e1
SW
7#
8
57c3e5fc
MY
9ifdef CONFIG_SPL_BUILD
10obj-$(CONFIG_SPL_FAT_SUPPORT) += fat/
11else
35c79275 12obj-y += fs.o
e82004bc
MY
13
14obj-y += cbfs/
15obj-y += cramfs/
16obj-y += ext4/
57c3e5fc 17obj-y += fat/
e82004bc
MY
18obj-y += fdos/
19obj-y += jffs2/
20obj-y += reiserfs/
21obj-y += sandbox/
22obj-y += ubifs/
23obj-y += yaffs2/
24obj-y += zfs/
57c3e5fc 25endif