Commit 76831125 authored by Tracey Dent's avatar Tracey Dent Committed by Greg Kroah-Hartman

Staging: wlags49_h2: Makefile: cleaned up Makefile cflag lines

Changed to use the proper ccflags-y option
Signed-off-by: default avatarTracey Dent <tdent48227@gmail.com>
Acked-by: default avatarSam Ravnborg <sam@ravnborg.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 8e03fc59
...@@ -12,8 +12,8 @@ ...@@ -12,8 +12,8 @@
# If you want to build AP support (untested), comment out -DSTA_ONLY # If you want to build AP support (untested), comment out -DSTA_ONLY
INSTALLDIR := /lib/modules/$(shell uname -r)/kernel/drivers/net/wireless INSTALLDIR := /lib/modules/$(shell uname -r)/kernel/drivers/net/wireless
EXTRA_CFLAGS += -I$(KERNELDIR)/include ccflags-y := -I$(KERNELDIR)/include
EXTRA_CFLAGS += -I$(src) \ ccflags-y += -I$(src) \
-DBUS_PCMCIA \ -DBUS_PCMCIA \
-DUSE_WPA \ -DUSE_WPA \
-DUSE_WEXT \ -DUSE_WEXT \
...@@ -25,16 +25,16 @@ EXTRA_CFLAGS += -I$(src) \ ...@@ -25,16 +25,16 @@ EXTRA_CFLAGS += -I$(src) \
# -DUSE_UIL \ # -DUSE_UIL \
# -DUSE_PROFILE \ # -DUSE_PROFILE \
ifeq ($(findstring HERMES25,$(EXTRA_CFLAGS)),) ifeq ($(findstring HERMES25,$(ccflags-y)),)
WLNAME := wlags49_h2_cs WLNAME := wlags49_h2_cs
$(WLNAME)-y := sta_h2.o $(WLNAME)-y := sta_h2.o
ifeq ($(findstring STA_ONLY,$(EXTRA_CFLAGS)),) ifeq ($(findstring STA_ONLY,$(ccflags-y)),)
$(WLNAME)-y += ap_h2.o $(WLNAME)-y += ap_h2.o
endif endif
else else
WLNAME=wlags49_h25_cs WLNAME=wlags49_h25_cs
$(WLNAME)-y := sta_h25.o $(WLNAME)-y := sta_h25.o
ifeq ($(findstring STA_ONLY,$(EXTRA_CFLAGS)),) ifeq ($(findstring STA_ONLY,$(ccflags-y)),)
$(WLNAME)-y += ap_h25.o $(WLNAME)-y += ap_h25.o
endif endif
endif endif
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment