Kbuild 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. #
  2. # Kbuild for the OSD modules
  3. #
  4. # Copyright (C) 2008 Panasas Inc. All rights reserved.
  5. #
  6. # Authors:
  7. # Boaz Harrosh <bharrosh@panasas.com>
  8. # Benny Halevy <bhalevy@panasas.com>
  9. #
  10. # This program is free software; you can redistribute it and/or modify
  11. # it under the terms of the GNU General Public License version 2
  12. #
  13. ifneq ($(OSD_INC),)
  14. # we are built out-of-tree Kconfigure everything as on
  15. CONFIG_SCSI_OSD_INITIATOR=m
  16. ccflags-y += -DCONFIG_SCSI_OSD_INITIATOR -DCONFIG_SCSI_OSD_INITIATOR_MODULE
  17. CONFIG_SCSI_OSD_ULD=m
  18. ccflags-y += -DCONFIG_SCSI_OSD_ULD -DCONFIG_SCSI_OSD_ULD_MODULE
  19. # CONFIG_SCSI_OSD_DPRINT_SENSE =
  20. # 0 - no print of errors
  21. # 1 - print errors
  22. # 2 - errors + warrnings
  23. ccflags-y += -DCONFIG_SCSI_OSD_DPRINT_SENSE=1
  24. # Uncomment to turn debug on
  25. # ccflags-y += -DCONFIG_SCSI_OSD_DEBUG
  26. # if we are built out-of-tree and the hosting kernel has OSD headers
  27. # then "ccflags-y +=" will not pick the out-off-tree headers. Only by doing
  28. # this it will work. This might break in future kernels
  29. LINUXINCLUDE := -I$(OSD_INC) $(LINUXINCLUDE)
  30. endif
  31. # libosd.ko - osd-initiator library
  32. libosd-y := osd_initiator.o
  33. obj-$(CONFIG_SCSI_OSD_INITIATOR) += libosd.o
  34. # osd.ko - SCSI ULD and char-device
  35. osd-y := osd_uld.o
  36. obj-$(CONFIG_SCSI_OSD_ULD) += osd.o