diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2006-10-05 10:17:08 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2006-10-05 10:17:08 +0000 |
commit | 7d219aab70e6951ab82c27c202cac05016696723 (patch) | |
tree | 4c0679bfa391f71aee9b51505a5d3dc8f60a0cf7 /e2fsprogs/blkid | |
parent | 8f8f268cfdecb4cabeb2e649a73afc7a485aeff5 (diff) | |
download | busybox-w32-7d219aab70e6951ab82c27c202cac05016696723.tar.gz busybox-w32-7d219aab70e6951ab82c27c202cac05016696723.tar.bz2 busybox-w32-7d219aab70e6951ab82c27c202cac05016696723.zip |
build system overhaul
Diffstat (limited to 'e2fsprogs/blkid')
-rw-r--r-- | e2fsprogs/blkid/Kbuild | 18 | ||||
-rw-r--r-- | e2fsprogs/blkid/blkid_getsize.c | 2 | ||||
-rw-r--r-- | e2fsprogs/blkid/devname.c | 2 | ||||
-rw-r--r-- | e2fsprogs/blkid/devno.c | 2 |
4 files changed, 18 insertions, 6 deletions
diff --git a/e2fsprogs/blkid/Kbuild b/e2fsprogs/blkid/Kbuild new file mode 100644 index 000000000..ba0bee03d --- /dev/null +++ b/e2fsprogs/blkid/Kbuild | |||
@@ -0,0 +1,18 @@ | |||
1 | # Makefile for busybox | ||
2 | # | ||
3 | # Copyright (C) 1999-2005 by Erik Andersen <andersen@codepoet.org> | ||
4 | # | ||
5 | # Licensed under the GPL v2, see the file LICENSE in this tarball. | ||
6 | |||
7 | lib-y:= | ||
8 | lib-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 | ||
10 | |||
11 | CFLAGS_dev.o := -include include/busybox.h | ||
12 | CFLAGS_devname.o := -include include/busybox.h | ||
13 | CFLAGS_devno.o := -include include/busybox.h | ||
14 | CFLAGS_blkid_getsize.o := -include include/busybox.h | ||
15 | CFLAGS_probe.o := -include include/busybox.h | ||
16 | CFLAGS_save.o := -include include/busybox.h | ||
17 | CFLAGS_tag.o := -include include/busybox.h | ||
18 | CFLAGS_list.o := -include include/busybox.h | ||
diff --git a/e2fsprogs/blkid/blkid_getsize.c b/e2fsprogs/blkid/blkid_getsize.c index 7a2133f0a..3c5ec5b76 100644 --- a/e2fsprogs/blkid/blkid_getsize.c +++ b/e2fsprogs/blkid/blkid_getsize.c | |||
@@ -14,9 +14,7 @@ | |||
14 | #include "blkidP.h" | 14 | #include "blkidP.h" |
15 | 15 | ||
16 | #include <stdio.h> | 16 | #include <stdio.h> |
17 | #if HAVE_UNISTD_H | ||
18 | #include <unistd.h> | 17 | #include <unistd.h> |
19 | #endif | ||
20 | #if HAVE_ERRNO_H | 18 | #if HAVE_ERRNO_H |
21 | #include <errno.h> | 19 | #include <errno.h> |
22 | #endif | 20 | #endif |
diff --git a/e2fsprogs/blkid/devname.c b/e2fsprogs/blkid/devname.c index b5c1bc9a8..7606e400d 100644 --- a/e2fsprogs/blkid/devname.c +++ b/e2fsprogs/blkid/devname.c | |||
@@ -23,9 +23,7 @@ | |||
23 | #if HAVE_SYS_TYPES_H | 23 | #if HAVE_SYS_TYPES_H |
24 | #include <sys/types.h> | 24 | #include <sys/types.h> |
25 | #endif | 25 | #endif |
26 | #if HAVE_SYS_STAT_H | ||
27 | #include <sys/stat.h> | 26 | #include <sys/stat.h> |
28 | #endif | ||
29 | #if HAVE_ERRNO_H | 27 | #if HAVE_ERRNO_H |
30 | #include <errno.h> | 28 | #include <errno.h> |
31 | #endif | 29 | #endif |
diff --git a/e2fsprogs/blkid/devno.c b/e2fsprogs/blkid/devno.c index 065761fb4..be93666be 100644 --- a/e2fsprogs/blkid/devno.c +++ b/e2fsprogs/blkid/devno.c | |||
@@ -21,9 +21,7 @@ | |||
21 | #if HAVE_SYS_TYPES_H | 21 | #if HAVE_SYS_TYPES_H |
22 | #include <sys/types.h> | 22 | #include <sys/types.h> |
23 | #endif | 23 | #endif |
24 | #if HAVE_SYS_STAT_H | ||
25 | #include <sys/stat.h> | 24 | #include <sys/stat.h> |
26 | #endif | ||
27 | #include <dirent.h> | 25 | #include <dirent.h> |
28 | #if HAVE_ERRNO_H | 26 | #if HAVE_ERRNO_H |
29 | #include <errno.h> | 27 | #include <errno.h> |