aboutsummaryrefslogtreecommitdiff
path: root/e2fsprogs
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2006-10-05 10:26:05 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2006-10-05 10:26:05 +0000
commit5d2f1736d9bdc2ac0d47000ed0ce403b9f06f6fb (patch)
treee47a7430f1e2fc350f009d2aea76e3bfbdec80f0 /e2fsprogs
parent7d219aab70e6951ab82c27c202cac05016696723 (diff)
downloadbusybox-w32-5d2f1736d9bdc2ac0d47000ed0ce403b9f06f6fb.tar.gz
busybox-w32-5d2f1736d9bdc2ac0d47000ed0ce403b9f06f6fb.tar.bz2
busybox-w32-5d2f1736d9bdc2ac0d47000ed0ce403b9f06f6fb.zip
build system: small optimization
Diffstat (limited to 'e2fsprogs')
-rw-r--r--e2fsprogs/Kbuild11
-rw-r--r--e2fsprogs/blkid/Kbuild9
-rw-r--r--e2fsprogs/e2p/Kbuild7
-rw-r--r--e2fsprogs/ext2fs/Kbuild23
-rw-r--r--e2fsprogs/uuid/Kbuild9
5 files changed, 34 insertions, 25 deletions
diff --git a/e2fsprogs/Kbuild b/e2fsprogs/Kbuild
index f35a1ae32..edd0d5eab 100644
--- a/e2fsprogs/Kbuild
+++ b/e2fsprogs/Kbuild
@@ -7,21 +7,10 @@
7lib-y:= 7lib-y:=
8 8
9lib-$(CONFIG_CHATTR) += chattr.o 9lib-$(CONFIG_CHATTR) += chattr.o
10libs-$(CONFIG_CHATTR) += e2p/
11
12lib-$(CONFIG_E2FSCK) += e2fsck.o util.o 10lib-$(CONFIG_E2FSCK) += e2fsck.o util.o
13libs-$(CONFIG_E2FSCK) += blkid/ ext2fs/ uuid/
14
15lib-$(CONFIG_FSCK) += fsck.o util.o 11lib-$(CONFIG_FSCK) += fsck.o util.o
16libs-$(CONFIG_FSCK) += blkid/ ext2fs/ uuid/
17
18lib-$(CONFIG_LSATTR) += lsattr.o 12lib-$(CONFIG_LSATTR) += lsattr.o
19libs-$(CONFIG_LSATTR) += e2p/
20
21lib-$(CONFIG_MKE2FS) += mke2fs.o util.o 13lib-$(CONFIG_MKE2FS) += mke2fs.o util.o
22libs-$(CONFIG_MKE2FS) += e2p/ blkid/ ext2fs/ uuid/
23
24lib-$(CONFIG_TUNE2FS) += tune2fs.o util.o 14lib-$(CONFIG_TUNE2FS) += tune2fs.o util.o
25libs-$(CONFIG_TUNE2FS) += e2p/ blkid/ ext2fs/ uuid/
26 15
27CFLAGS += -include e2fsprogs/e2fsbb.h 16CFLAGS += -include e2fsprogs/e2fsbb.h
diff --git a/e2fsprogs/blkid/Kbuild b/e2fsprogs/blkid/Kbuild
index ba0bee03d..98b5c277f 100644
--- a/e2fsprogs/blkid/Kbuild
+++ b/e2fsprogs/blkid/Kbuild
@@ -4,9 +4,14 @@
4# 4#
5# Licensed under the GPL v2, see the file LICENSE in this tarball. 5# Licensed under the GPL v2, see the file LICENSE in this tarball.
6 6
7NEEDED-$(CONFIG_E2FSCK) = y
8NEEDED-$(CONFIG_FSCK) = y
9NEEDED-$(CONFIG_MKE2FS) = y
10NEEDED-$(CONFIG_TUNE2FS) = y
11
7lib-y:= 12lib-y:=
8lib-y += cache.o dev.o devname.o devno.o blkid_getsize.o \ 13lib-$(NEEDED-y) += cache.o dev.o devname.o devno.o blkid_getsize.o \
9 probe.o read.o resolve.o save.o tag.o list.o 14 probe.o read.o resolve.o save.o tag.o list.o
10 15
11CFLAGS_dev.o := -include include/busybox.h 16CFLAGS_dev.o := -include include/busybox.h
12CFLAGS_devname.o := -include include/busybox.h 17CFLAGS_devname.o := -include include/busybox.h
diff --git a/e2fsprogs/e2p/Kbuild b/e2fsprogs/e2p/Kbuild
index 24a692ea1..64e462170 100644
--- a/e2fsprogs/e2p/Kbuild
+++ b/e2fsprogs/e2p/Kbuild
@@ -4,7 +4,12 @@
4# 4#
5# Licensed under the GPL v2, see the file LICENSE in this tarball. 5# Licensed under the GPL v2, see the file LICENSE in this tarball.
6 6
7NEEDED-$(CONFIG_CHATTR) = y
8NEEDED-$(LSATTR) = y
9NEEDED-$(MKE2FS) = y
10NEEDED-$(TUNE2FS) = y
11
7lib-y:= 12lib-y:=
8lib-y += fgetsetflags.o fgetsetversion.o pf.o iod.o mntopts.o \ 13lib-$(NEEDED-y) += fgetsetflags.o fgetsetversion.o pf.o iod.o mntopts.o \
9 feature.o ls.o uuid.o pe.o ostype.o ps.o hashstr.o \ 14 feature.o ls.o uuid.o pe.o ostype.o ps.o hashstr.o \
10 parse_num.o 15 parse_num.o
diff --git a/e2fsprogs/ext2fs/Kbuild b/e2fsprogs/ext2fs/Kbuild
index dc499348d..d7d6f9a9b 100644
--- a/e2fsprogs/ext2fs/Kbuild
+++ b/e2fsprogs/ext2fs/Kbuild
@@ -4,15 +4,20 @@
4# 4#
5# Licensed under the GPL v2, see the file LICENSE in this tarball. 5# Licensed under the GPL v2, see the file LICENSE in this tarball.
6 6
7NEEDED-$(CONFIG_E2FSCK) = y
8NEEDED-$(CONFIG_FSCK) = y
9NEEDED-$(CONFIG_MKE2FS) = y
10NEEDED-$(CONFIG_TUNE2FS) = y
11
7lib-y:= 12lib-y:=
8lib-y += gen_bitmap.o bitops.o ismounted.o mkjournal.o unix_io.o \ 13lib-$(NEEDED-y) += gen_bitmap.o bitops.o ismounted.o mkjournal.o unix_io.o \
9 rw_bitmaps.o initialize.o bitmaps.o block.o \ 14 rw_bitmaps.o initialize.o bitmaps.o block.o \
10 ind_block.o inode.o freefs.o alloc_stats.o closefs.o \ 15 ind_block.o inode.o freefs.o alloc_stats.o closefs.o \
11 openfs.o io_manager.o finddev.o read_bb.o alloc.o badblocks.o \ 16 openfs.o io_manager.o finddev.o read_bb.o alloc.o badblocks.o \
12 getsize.o getsectsize.o alloc_tables.o read_bb_file.o mkdir.o \ 17 getsize.o getsectsize.o alloc_tables.o read_bb_file.o mkdir.o \
13 bb_inode.o newdir.o alloc_sb.o lookup.o dirblock.o expanddir.o \ 18 bb_inode.o newdir.o alloc_sb.o lookup.o dirblock.o expanddir.o \
14 dir_iterate.o link.o res_gdt.o icount.o get_pathname.o dblist.o \ 19 dir_iterate.o link.o res_gdt.o icount.o get_pathname.o dblist.o \
15 dirhash.o version.o flushb.o unlink.o check_desc.o valid_blk.o \ 20 dirhash.o version.o flushb.o unlink.o check_desc.o valid_blk.o \
16 ext_attr.o bmap.o dblist_dir.o ext2fs_inline.o swapfs.o 21 ext_attr.o bmap.o dblist_dir.o ext2fs_inline.o swapfs.o
17 22
18CFLAGS += -include e2fsprogs/e2fsbb.h 23CFLAGS += -include e2fsprogs/e2fsbb.h
diff --git a/e2fsprogs/uuid/Kbuild b/e2fsprogs/uuid/Kbuild
index 0ae74aed3..dde981840 100644
--- a/e2fsprogs/uuid/Kbuild
+++ b/e2fsprogs/uuid/Kbuild
@@ -4,6 +4,11 @@
4# 4#
5# Licensed under the GPL v2, see the file LICENSE in this tarball. 5# Licensed under the GPL v2, see the file LICENSE in this tarball.
6 6
7NEEDED-$(CONFIG_E2FSCK) = y
8NEEDED-$(CONFIG_FSCK) = y
9NEEDED-$(CONFIG_MKE2FS) = y
10NEEDED-$(CONFIG_TUNE2FS) = y
11
7lib-y:= 12lib-y:=
8lib-y += compare.o gen_uuid.o pack.o parse.o unpack.o unparse.o \ 13lib-$(NEEDED-y) += compare.o gen_uuid.o pack.o parse.o unpack.o unparse.o \
9 uuid_time.o 14 uuid_time.o