Makefile 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. KMOD= sfxge
  2. SFXGE= ${SRCTOP}/sys/dev/sfxge
  3. SRCS= device_if.h bus_if.h pci_if.h
  4. SRCS+= opt_inet.h opt_inet6.h opt_rss.h
  5. .PATH: ${SRCTOP}/sys/dev/sfxge
  6. SRCS+= sfxge.c sfxge_dma.c sfxge_ev.c
  7. SRCS+= sfxge_intr.c sfxge_mcdi.c sfxge_nvram.c
  8. SRCS+= sfxge_port.c sfxge_rx.c sfxge_tx.c
  9. SRCS+= sfxge.h sfxge_rx.h sfxge_tx.h sfxge_version.h
  10. .PATH: ${SRCTOP}/sys/dev/sfxge/common
  11. SRCS+= efx_bootcfg.c efx_crc32.c efx_ev.c efx_intr.c efx_lic.c efx_mac.c
  12. SRCS+= efx_mcdi.c efx_mon.c efx_nic.c
  13. SRCS+= efx_nvram.c efx_phy.c efx_port.c efx_rx.c efx_sram.c efx_tunnel.c
  14. SRCS+= efx_tx.c efx_vpd.c efx_filter.c efx_hash.c
  15. SRCS+= efsys.h
  16. SRCS+= efx.h efx_annote.h efx_check.h efx_impl.h efx_mcdi.h
  17. SRCS+= efx_regs.h efx_regs_ef10.h
  18. SRCS+= efx_regs_mcdi.h efx_regs_mcdi_aoe.h efx_regs_mcdi_strs.h
  19. SRCS+= efx_regs_pci.h efx_types.h
  20. SRCS+= efx_phy_ids.h
  21. SRCS+= ef10_tlv_layout.h
  22. SRCS+= mcdi_mon.c mcdi_mon.h
  23. SRCS+= siena_mac.c siena_mcdi.c siena_nic.c siena_nvram.c siena_phy.c
  24. SRCS+= siena_sram.c siena_vpd.c
  25. SRCS+= siena_flash.h siena_impl.h
  26. SRCS+= ef10_ev.c ef10_filter.c ef10_image.c ef10_intr.c ef10_mac.c ef10_mcdi.c
  27. SRCS+= ef10_nic.c ef10_nvram.c ef10_phy.c ef10_rx.c ef10_tx.c ef10_vpd.c
  28. SRCS+= ef10_impl.h ef10_signed_image_layout.h
  29. SRCS+= hunt_nic.c
  30. SRCS+= hunt_impl.h
  31. SRCS+= medford_nic.c
  32. SRCS+= medford_impl.h
  33. SRCS+= medford2_nic.c
  34. SRCS+= medford2_impl.h
  35. # Extra debug checks
  36. #CFLAGS += -DDEBUG=1
  37. .include <bsd.kmod.mk>