mirror of https://github.com/proski/madwifi
Use EXTRA_CFLAGS intead of CFLAGS. Remove -Werror
git-svn-id: http://madwifi-project.org/svn/madwifi/trunk@3537 0192ed92-7a03-0410-a25b-9323aeb14dbd
This commit is contained in:
parent
f8f3f6ce14
commit
7e4c9f199b
|
@ -229,22 +229,22 @@ NM := $(save_NM)
|
|||
include $(TOP)/BuildCaps.inc
|
||||
|
||||
ifeq ($(strip $(ATH_DEBUG)),1)
|
||||
CFLAGS += -DAR_DEBUG -DIEEE80211_DEBUG
|
||||
EXTRA_CFLAGS += -DAR_DEBUG -DIEEE80211_DEBUG
|
||||
endif
|
||||
|
||||
ifeq ($(strip $(ATH_DEBUG_SPINLOCKS)),1)
|
||||
CFLAGS += -DATH_DEBUG_SPINLOCKS
|
||||
EXTRA_CFLAGS += -DATH_DEBUG_SPINLOCKS
|
||||
endif
|
||||
|
||||
ifeq ($(strip $(IEEE80211_DEBUG_REFCNT)),1)
|
||||
CFLAGS += -DIEEE80211_DEBUG_REFCNT
|
||||
EXTRA_CFLAGS += -DIEEE80211_DEBUG_REFCNT
|
||||
endif
|
||||
|
||||
# Ensure correct endianess
|
||||
LDFLAGS += $(LDOPTS)
|
||||
|
||||
# Be pedantic
|
||||
CFLAGS += -Werror -Wall
|
||||
EXTRA_CFLAGS += -Wall
|
||||
|
||||
# Filter out compiler options that are not supported by all compilers
|
||||
# and that are not needed to ensure compatible architecture and calling
|
||||
|
|
Loading…
Reference in New Issue