diff options
Diffstat (limited to 'win32/Kbuild')
-rw-r--r-- | win32/Kbuild | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/win32/Kbuild b/win32/Kbuild new file mode 100644 index 000000000..1bb79bfd3 --- /dev/null +++ b/win32/Kbuild | |||
@@ -0,0 +1,34 @@ | |||
1 | # Makefile for busybox | ||
2 | # | ||
3 | # Licensed under the GPL v2, see the file LICENSE in this tarball. | ||
4 | |||
5 | lib-y:= | ||
6 | |||
7 | lib-$(CONFIG_PLATFORM_MINGW32) += dirent.o | ||
8 | lib-$(CONFIG_PLATFORM_MINGW32) += dirname.o | ||
9 | lib-$(CONFIG_PLATFORM_MINGW32) += env.o | ||
10 | lib-$(CONFIG_PLATFORM_MINGW32) += fnmatch.o | ||
11 | lib-$(CONFIG_PLATFORM_MINGW32) += fsync.o | ||
12 | lib-$(CONFIG_PLATFORM_MINGW32) += glob.o | ||
13 | lib-$(CONFIG_PLATFORM_MINGW32) += inet_pton.o | ||
14 | lib-$(CONFIG_PLATFORM_MINGW32) += ioctl.o | ||
15 | lib-$(CONFIG_FEATURE_PRNG_ISAAC) += isaac.o | ||
16 | lib-$(CONFIG_PLATFORM_MINGW32) += mingw.o | ||
17 | lib-$(CONFIG_PLATFORM_MINGW32) += process.o | ||
18 | lib-$(CONFIG_PLATFORM_MINGW32) += match_class.o | ||
19 | lib-$(CONFIG_PLATFORM_MINGW32) += mntent.o | ||
20 | lib-$(CONFIG_PLATFORM_MINGW32) += net.o | ||
21 | lib-$(CONFIG_PLATFORM_MINGW32) += poll.o | ||
22 | lib-$(CONFIG_PLATFORM_MINGW32) += popen.o | ||
23 | lib-$(CONFIG_PLATFORM_MINGW32) += regex.o | ||
24 | lib-$(CONFIG_PLATFORM_MINGW32) += select.o | ||
25 | lib-$(CONFIG_FEATURE_PRNG_SHELL) += sh_random.o | ||
26 | lib-$(CONFIG_PLATFORM_MINGW32) += statfs.o | ||
27 | lib-$(CONFIG_PLATFORM_MINGW32) += strndup.o | ||
28 | lib-$(CONFIG_PLATFORM_MINGW32) += strptime.o | ||
29 | lib-$(CONFIG_PLATFORM_MINGW32) += strverscmp.o | ||
30 | lib-$(CONFIG_PLATFORM_MINGW32) += system.o | ||
31 | lib-$(CONFIG_PLATFORM_MINGW32) += termios.o | ||
32 | lib-$(CONFIG_PLATFORM_MINGW32) += timegm.o | ||
33 | lib-$(CONFIG_PLATFORM_MINGW32) += uname.o | ||
34 | lib-$(CONFIG_PLATFORM_MINGW32) += winansi.o | ||