Blame view

fs/Makefile 594 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
10
  ifdef CONFIG_SPL_BUILD
  obj-$(CONFIG_SPL_FAT_SUPPORT) += fat/
  else
35c792754   Masahiro Yamada   fs: convert makef...
11
  obj-y				+= fs.o
e82004bc6   Masahiro Yamada   fs: move some fil...
12

4678d7425   Masahiro Yamada   fs: descend into ...
13
14
15
  obj-$(CONFIG_CMD_CBFS) += cbfs/
  obj-$(CONFIG_CMD_CRAMFS) += cramfs/
  obj-$(CONFIG_FS_EXT4) += ext4/
57c3e5fcf   Masahiro Yamada   Makefile: move fs...
16
  obj-y += fat/
4678d7425   Masahiro Yamada   fs: descend into ...
17
18
19
20
21
22
  obj-$(CONFIG_CMD_JFFS2) += jffs2/
  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...
23
  endif