Kbuild 886 B

1234567891011121314151617181920212223
  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. NEEDED-$(CONFIG_E2FSCK) = y
  7. NEEDED-$(CONFIG_FSCK) = y
  8. NEEDED-$(CONFIG_MKE2FS) = y
  9. NEEDED-$(CONFIG_TUNE2FS) = y
  10. lib-y:=
  11. lib-$(NEEDED-y) += cache.o dev.o devname.o devno.o blkid_getsize.o \
  12. probe.o read.o resolve.o save.o tag.o list.o
  13. CFLAGS_dev.o := -include $(srctree)/include/busybox.h
  14. CFLAGS_devname.o := -include $(srctree)/include/busybox.h
  15. CFLAGS_devno.o := -include $(srctree)/include/busybox.h
  16. CFLAGS_blkid_getsize.o := -include $(srctree)/include/busybox.h
  17. CFLAGS_probe.o := -include $(srctree)/include/busybox.h
  18. CFLAGS_save.o := -include $(srctree)/include/busybox.h
  19. CFLAGS_tag.o := -include $(srctree)/include/busybox.h
  20. CFLAGS_list.o := -include $(srctree)/include/busybox.h