X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=fs%2FMakefile;h=22aad126bc2b6c2e95be088f70cb8694e1c9741c;hb=6052cbab40e927f94bcb034f1b4c76a18d6729e1;hp=ad74942d08dbdf6e0b519b331f622784c8c81cad;hpb=2262cfeef91458b01a1bfe3812ccbbfdf8b82807;p=u-boot diff --git a/fs/Makefile b/fs/Makefile index ad74942d08..22aad126bc 100644 --- a/fs/Makefile +++ b/fs/Makefile @@ -1,5 +1,5 @@ # -# (C) Copyright 2000, 2001 +# (C) Copyright 2000-2006 # Wolfgang Denk, DENX Software Engineering, wd@denx.de. # # See file CREDITS for list of people who contributed to this @@ -22,9 +22,17 @@ # # -SUBDIRS := jffs2 fdos +subdirs-$(CONFIG_CMD_CRAMFS) := cramfs +subdirs-$(CONFIG_CMD_EXT2) += ext2 +subdirs-$(CONFIG_CMD_FAT) += fat +subdirs-$(CONFIG_CMD_FDOS) += fdos +subdirs-$(CONFIG_CMD_JFFS2) += jffs2 +subdirs-$(CONFIG_CMD_REISER) += reiserfs +subdirs-$(CONFIG_YAFFS2) += yaffs2 +subdirs-$(CONFIG_CMD_UBIFS) += ubifs -.depend all: +SUBDIRS := $(subdirs-y) + +$(obj).depend all: @for dir in $(SUBDIRS) ; do \ $(MAKE) -C $$dir $@ ; done -