Blame view

fs/Makefile 687 Bytes
045fa1e11   Stephen Warren   fs: add filesyste...
1
2
3
4
5
  #
  # (C) Copyright 2000-2006
  # Wolfgang Denk, DENX Software Engineering, wd@denx.de.
  # Copyright (c) 2012, NVIDIA CORPORATION.  All rights reserved.
  #
1a4596601   Wolfgang Denk   Add GPL-2.0+ SPDX...
6
  # SPDX-License-Identifier:	GPL-2.0+
045fa1e11   Stephen Warren   fs: add filesyste...
7
  #
57c3e5fcf   Masahiro Yamada   Makefile: move fs...
8
9
  ifdef CONFIG_SPL_BUILD
  obj-$(CONFIG_SPL_FAT_SUPPORT) += fat/
592f92226   Guillaume GARDET   spl: Add EXT supp...
10
  obj-$(CONFIG_SPL_EXT_SUPPORT) += ext4/
57c3e5fcf   Masahiro Yamada   Makefile: move fs...
11
  else
35c792754   Masahiro Yamada   fs: convert makef...
12
  obj-y				+= fs.o
e82004bc6   Masahiro Yamada   fs: move some fil...
13

0c936ee31   Marek BehĂșn   fs: btrfs: Add U-...
14
  obj-$(CONFIG_FS_BTRFS) += btrfs/
deb959991   Simon Glass   fs: Kconfig: Add ...
15
  obj-$(CONFIG_FS_CBFS) += cbfs/
4678d7425   Masahiro Yamada   fs: descend into ...
16
17
  obj-$(CONFIG_CMD_CRAMFS) += cramfs/
  obj-$(CONFIG_FS_EXT4) += ext4/
57c3e5fcf   Masahiro Yamada   Makefile: move fs...
18
  obj-y += fat/
59e12a4a8   Simon Glass   fs: Kconfig: Add ...
19
  obj-$(CONFIG_FS_JFFS2) += jffs2/
4678d7425   Masahiro Yamada   fs: descend into ...
20
21
22
23
24
  obj-$(CONFIG_CMD_REISER) += reiserfs/
  obj-$(CONFIG_SANDBOX) += sandbox/
  obj-$(CONFIG_CMD_UBIFS) += ubifs/
  obj-$(CONFIG_YAFFS2) += yaffs2/
  obj-$(CONFIG_CMD_ZFS) += zfs/
57c3e5fcf   Masahiro Yamada   Makefile: move fs...
25
  endif
5994e8b64   Marek BehĂșn   fs: Create a comm...
26
  obj-y += fs_internal.o