c378187825
DEBUG_FLAGS are set to DEBUG option value when kernel is built. For example, it is -g in GENERIC config to have debug symbols. Also DEBUG_FLAGS are used to determine if ctfconvert should keep debug symbols. Since we redefined DEBUG_FLAGS, debug symbols were always missing. ctfconvert complains about it during kernel build. It is incorrect to append DEBUG_FLAGS, since if DEBUG has no -g (or similar), we'll have no debug symbols and ctfconvert will complain. If it incorrect to always have -g in our DEBUG_FLAGS, since debug symbols presence should be controllable by kernel config. So, just add disabled by default addition of -DDEBUG=1 to CFLAGS. Reviewed by: imp Sponsored by: Solarflare Communications, Inc. MFC after: 2 days Differential Revision: https://reviews.freebsd.org/D2666
41 lines
1.2 KiB
Makefile
41 lines
1.2 KiB
Makefile
# $FreeBSD$
|
|
|
|
KMOD= sfxge
|
|
|
|
SFXGE= ${.CURDIR}/../../dev/sfxge
|
|
|
|
SRCS= device_if.h bus_if.h pci_if.h
|
|
SRCS+= opt_inet.h opt_inet6.h opt_sched.h
|
|
|
|
.PATH: ${.CURDIR}/../../dev/sfxge
|
|
SRCS+= sfxge.c sfxge_dma.c sfxge_ev.c
|
|
SRCS+= sfxge_intr.c sfxge_mcdi.c sfxge_nvram.c
|
|
SRCS+= sfxge_port.c sfxge_rx.c sfxge_tx.c
|
|
SRCS+= sfxge.h sfxge_rx.h sfxge_tx.h sfxge_version.h
|
|
|
|
.PATH: ${.CURDIR}/../../dev/sfxge/common
|
|
SRCS+= efx_bootcfg.c efx_crc32.c efx_ev.c efx_intr.c efx_mac.c
|
|
SRCS+= efx_mcdi.c efx_mon.c efx_nic.c
|
|
SRCS+= efx_nvram.c efx_phy.c efx_port.c efx_rx.c efx_sram.c efx_tx.c
|
|
SRCS+= efx_vpd.c efx_wol.c efx_filter.c efx_hash.c
|
|
SRCS+= efsys.h
|
|
SRCS+= efx.h efx_check.h efx_impl.h efx_mcdi.h efx_regs.h efx_regs_ef10.h
|
|
SRCS+= efx_regs_mcdi.h efx_regs_pci.h efx_types.h efx_phy_ids.h
|
|
SRCS+= ef10_tlv_layout.h
|
|
|
|
SRCS+= mcdi_mon.c mcdi_mon.h
|
|
|
|
SRCS+= siena_mac.c siena_mcdi.c siena_nic.c siena_nvram.c siena_phy.c
|
|
SRCS+= siena_sram.c siena_vpd.c
|
|
SRCS+= siena_flash.h siena_impl.h
|
|
|
|
SRCS+= hunt_ev.c hunt_intr.c hunt_mac.c hunt_mcdi.c hunt_nic.c
|
|
SRCS+= hunt_nvram.c hunt_rx.c hunt_phy.c hunt_sram.c hunt_tx.c hunt_vpd.c
|
|
SRCS+= hunt_filter.c
|
|
SRCS+= hunt_impl.h
|
|
|
|
# Extra debug checks
|
|
#CFLAGS += -DDEBUG=1
|
|
|
|
.include <bsd.kmod.mk>
|