Changeset 3885
- Timestamp:
- 12/17/08 19:41:06 (3 years ago)
- Files:
-
- madwifi/branches/madwifi-free/Makefile (modified) (1 diff)
- madwifi/branches/madwifi-free/Makefile.inc (modified) (1 diff)
- madwifi/branches/madwifi-free/Makefile.kernel (modified) (3 diffs)
- madwifi/branches/madwifi-free/ath/Makefile (modified) (1 diff)
- madwifi/branches/madwifi-free/ath/Makefile.kernel (modified) (2 diffs)
- madwifi/branches/madwifi-free/ath_hal (deleted)
- madwifi/branches/madwifi-free/ath_rate/amrr/Makefile (modified) (1 diff)
- madwifi/branches/madwifi-free/ath_rate/amrr/Makefile.kernel (modified) (1 diff)
- madwifi/branches/madwifi-free/ath_rate/minstrel/Makefile (modified) (1 diff)
- madwifi/branches/madwifi-free/ath_rate/minstrel/Makefile.kernel (modified) (1 diff)
- madwifi/branches/madwifi-free/ath_rate/onoe/Makefile (modified) (1 diff)
- madwifi/branches/madwifi-free/ath_rate/onoe/Makefile.kernel (modified) (1 diff)
- madwifi/branches/madwifi-free/ath_rate/sample/Makefile (modified) (1 diff)
- madwifi/branches/madwifi-free/ath_rate/sample/Makefile.kernel (modified) (1 diff)
- madwifi/branches/madwifi-free/hal/Makefile (copied) (copied from madwifi/branches/madwifi-free/ath_hal/Makefile) (1 diff, 1 prop)
- madwifi/branches/madwifi-free/hal/Makefile.kernel (copied) (copied from madwifi/branches/madwifi-free/ath_hal/Makefile.kernel) (1 diff, 1 prop)
- madwifi/branches/madwifi-free/hal/ah_os.c (copied) (copied from madwifi/branches/madwifi-free/ath_hal/ah_os.c) (1 prop)
- madwifi/branches/madwifi-free/hal/ah_os.h (copied) (copied from madwifi/branches/madwifi-free/ath_hal/ah_os.h) (1 prop)
- madwifi/branches/madwifi-free/hal/ah_osdep.h (copied) (copied from madwifi/branches/madwifi-free/ath_hal/ah_osdep.h) (1 prop)
- madwifi/branches/madwifi-free/hal/opt_ah.h (copied) (copied from madwifi/branches/madwifi-free/ath_hal/opt_ah.h) (1 prop)
- madwifi/branches/madwifi-free/net80211/Makefile (modified) (1 diff)
- madwifi/branches/madwifi-free/net80211/Makefile.kernel (modified) (1 diff)
- madwifi/branches/madwifi-free/patch-kernel/install.sh (modified) (2 diffs)
- madwifi/branches/madwifi-free/tools/Makefile (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
madwifi/branches/madwifi-free/Makefile
r3883 r3885 46 46 include $(TOP)/Makefile.inc 47 47 48 obj-y := ath/ ath_ hal/ ath_rate/ net80211/48 obj-y := ath/ ath_rate/ hal/ net80211/ 49 49 50 50 ifdef CRYPTO_TESTING madwifi/branches/madwifi-free/Makefile.inc
r3883 r3885 123 123 endif 124 124 # 125 # Path to HAL/OS interface code126 #127 ATH_HAL= $(TOP)/ath_hal128 #129 125 # Path to the 802.11 include files. 130 126 # madwifi/branches/madwifi-free/Makefile.kernel
r3536 r3885 4 4 O_TARGET := madwifi.o 5 5 6 subdir-$(CONFIG_ATHEROS) += ath ath_hal net802116 subdir-$(CONFIG_ATHEROS) += ath hal net80211 7 7 subdir-$(CONFIG_ATHEROS_RATE_AMRR) += ath_rate/amrr 8 8 subdir-$(CONFIG_ATHEROS_RATE_MINSTREL) += ath_rate/minstrel … … 20 20 obj-y += ath/ath_pci.o 21 21 endif 22 obj-y += ath_hal/ath_hal.o22 obj-y += hal/ath_hal.o 23 23 obj-y += net80211/net80211.o 24 24 endif … … 33 33 obj-$(CONFIG_ATHEROS_RATE_ONOE) += ath_rate/onoe/ 34 34 obj-$(CONFIG_ATHEROS_RATE_SAMPLE) += ath_rate/sample/ 35 obj-$(CONFIG_ATHEROS) += ath/ ath_hal/ net80211/35 obj-$(CONFIG_ATHEROS) += ath/ hal/ net80211/ 36 36 37 37 endif madwifi/branches/madwifi-free/ath/Makefile
r3883 r3885 60 60 ath_$(BUSNAME)-objs := if_ath.o if_ath_radar.o if_ath_hal_extensions.o if_ath_$(BUSNAME).o 61 61 62 INCS += -I$(TOP) -I$( ATH_HAL) -I$(HAL) -I$(WLAN)62 INCS += -I$(TOP) -I$(HAL) -I$(WLAN) 63 63 64 64 EXTRA_CFLAGS+= $(INCS) $(COPTS) madwifi/branches/madwifi-free/ath/Makefile.kernel
r3883 r3885 10 10 11 11 include $(TOP)/BuildCaps.inc 12 include $(TOP)/ath_hal/ah_target.inc13 12 14 ATH_HAL=$(TOP)/ath_hal15 13 HAL= $(TOP)/hal 16 14 WLAN= $(TOP)/net80211 … … 32 30 33 31 INCS = -include $(COMPAT)/compat.h -I$(COMPAT) 34 INCS += -I$(TOP) -I$( ATH_HAL) -I$(HAL) -I$(WLAN)32 INCS += -I$(TOP) -I$(HAL) -I$(WLAN) 35 33 36 34 EXTRA_CFLAGS += $(INCS) $(COPTS) madwifi/branches/madwifi-free/ath_rate/amrr/Makefile
r3883 r3885 49 49 include $(TOP)/Makefile.inc 50 50 51 INCS += -I$(TOP) -I$(ATH) -I$( ATH_HAL) -I$(HAL)51 INCS += -I$(TOP) -I$(ATH) -I$(HAL) 52 52 53 53 EXTRA_CFLAGS+= $(INCS) $(COPTS) madwifi/branches/madwifi-free/ath_rate/amrr/Makefile.kernel
r3883 r3885 11 11 12 12 include $(TOP)/BuildCaps.inc 13 include $(TOP)/ath_hal/ah_target.inc14 13 15 14 ATH= $(TOP)/ath 16 ATH_HAL=$(TOP)/ath_hal17 15 COMPAT= $(TOP)/include 18 16 HAL= $(TOP)/hal 19 17 20 18 INCS = -include $(COMPAT)/compat.h -I$(COMPAT) 21 INCS += -I$(TOP) -I$(ATH) -I$( ATH_HAL) -I$(HAL)19 INCS += -I$(TOP) -I$(ATH) -I$(HAL) 22 20 EXTRA_CFLAGS += $(INCS) $(COPTS) 23 21 madwifi/branches/madwifi-free/ath_rate/minstrel/Makefile
r3883 r3885 47 47 include $(TOP)/Makefile.inc 48 48 49 INCS += -I$(TOP) -I$(ATH) -I$( ATH_HAL) -I$(HAL)49 INCS += -I$(TOP) -I$(ATH) -I$(HAL) 50 50 51 51 EXTRA_CFLAGS+= $(INCS) $(COPTS) madwifi/branches/madwifi-free/ath_rate/minstrel/Makefile.kernel
r3883 r3885 11 11 12 12 include $(TOP)/BuildCaps.inc 13 include $(TOP)/ath_hal/ah_target.inc14 13 15 14 ATH= $(TOP)/ath 16 ATH_HAL=$(TOP)/ath_hal17 15 COMPAT= $(TOP)/include 18 16 HAL= $(TOP)/hal 19 17 20 18 INCS = -include $(COMPAT)/compat.h -I$(COMPAT) 21 INCS += -I$(TOP) -I$(ATH) -I$( ATH_HAL) -I$(HAL)19 INCS += -I$(TOP) -I$(ATH) -I$(HAL) 22 20 EXTRA_CFLAGS += $(INCS) $(COPTS) 23 21 madwifi/branches/madwifi-free/ath_rate/onoe/Makefile
r3883 r3885 49 49 include $(TOP)/Makefile.inc 50 50 51 INCS += -I$(TOP) -I$(ATH) -I$( ATH_HAL) -I$(HAL)51 INCS += -I$(TOP) -I$(ATH) -I$(HAL) 52 52 53 53 EXTRA_CFLAGS+= $(INCS) $(COPTS) madwifi/branches/madwifi-free/ath_rate/onoe/Makefile.kernel
r3883 r3885 11 11 12 12 include $(TOP)/BuildCaps.inc 13 include $(TOP)/ath_hal/ah_target.inc14 13 15 14 ATH= $(TOP)/ath 16 ATH_HAL=$(TOP)/ath_hal17 15 COMPAT= $(TOP)/include 18 16 HAL= $(TOP)/hal 19 17 20 18 INCS = -include $(COMPAT)/compat.h -I$(COMPAT) 21 INCS += -I$(TOP) -I$(ATH) -I$( ATH_HAL) -I$(HAL)19 INCS += -I$(TOP) -I$(ATH) -I$(HAL) 22 20 EXTRA_CFLAGS += $(INCS) $(COPTS) 23 21 madwifi/branches/madwifi-free/ath_rate/sample/Makefile
r3883 r3885 47 47 include $(TOP)/Makefile.inc 48 48 49 INCS += -I$(TOP) -I$(ATH) -I$( ATH_HAL) -I$(HAL)49 INCS += -I$(TOP) -I$(ATH) -I$(HAL) 50 50 51 51 EXTRA_CFLAGS+= $(INCS) $(COPTS) madwifi/branches/madwifi-free/ath_rate/sample/Makefile.kernel
r3883 r3885 11 11 12 12 include $(TOP)/BuildCaps.inc 13 include $(TOP)/ath_hal/ah_target.inc14 13 15 14 ATH= $(TOP)/ath 16 ATH_HAL=$(TOP)/ath_hal17 15 COMPAT= $(TOP)/include 18 16 HAL= $(TOP)/hal 19 17 20 18 INCS = -include $(COMPAT)/compat.h -I$(COMPAT) 21 INCS += -I$(TOP) -I$(ATH) -I$( ATH_HAL) -I$(HAL)19 INCS += -I$(TOP) -I$(ATH) -I$(HAL) 22 20 EXTRA_CFLAGS += $(INCS) $(COPTS) 23 21 madwifi/branches/madwifi-free/hal/Makefile
- Property svn:mergeinfo set
r3883 r3885 53 53 endif 54 54 55 INCS += -I$( ATH_HAL) -I$(HAL)55 INCS += -I$(HAL) 56 56 57 57 EXTRA_CFLAGS+= $(INCS) $(COPTS) madwifi/branches/madwifi-free/hal/Makefile.kernel
- Property svn:mergeinfo set
r3883 r3885 11 11 include $(TOP)/BuildCaps.inc 12 12 13 ATH_HAL=$(TOP)/ath_hal14 13 COMPAT= $(TOP)/include 15 14 HAL= $(TOP)/hal 16 15 17 16 INCS = -include $(COMPAT)/compat.h -I$(COMPAT) 18 INCS += -I$( ATH_HAL) -I$(HAL)17 INCS += -I$(HAL) 19 18 20 19 EXTRA_CFLAGS += $(INCS) $(COPTS) madwifi/branches/madwifi-free/hal/ah_os.c
- Property svn:mergeinfo set
madwifi/branches/madwifi-free/hal/ah_os.h
- Property svn:mergeinfo set
madwifi/branches/madwifi-free/hal/ah_osdep.h
- Property svn:mergeinfo set
madwifi/branches/madwifi-free/hal/opt_ah.h
- Property svn:mergeinfo set
madwifi/branches/madwifi-free/net80211/Makefile
r3883 r3885 77 77 include $(TOP)/Makefile.inc 78 78 79 INCS += -I$(TOP) -I$( ATH_HAL) -I$(HAL)79 INCS += -I$(TOP) -I$(HAL) 80 80 81 81 EXTRA_CFLAGS+=$(INCS) $(COPTS) madwifi/branches/madwifi-free/net80211/Makefile.kernel
r3883 r3885 9 9 10 10 include $(TOP)/BuildCaps.inc 11 include $(TOP)/ath_hal/ah_target.inc12 11 13 12 COMPAT = $(TOP)/include 14 13 15 ATH_HAL = $(TOP)/ath_hal16 14 HAL = $(TOP)/hal 17 15 18 16 INCS = -include $(COMPAT)/compat.h -I$(COMPAT) 19 INCS += -I$(TOP) -I$( ATH_HAL) -I$(HAL)17 INCS += -I$(TOP) -I$(HAL) 20 18 EXTRA_CFLAGS += $(INCS) $(COPTS) 21 19 madwifi/branches/madwifi-free/patch-kernel/install.sh
r3748 r3885 75 75 76 76 echo "Copying source files" 77 FILES=$(cd ${SRC} && find ath ath_ hal ath_rate hal include net80211 -name '*.[ch]')77 FILES=$(cd ${SRC} && find ath ath_rate hal include net80211 -name '*.[ch]') 78 78 for f in $FILES; do 79 79 case $f in … … 89 89 cp -f ${SRC}/$f $(dirname ${MADWIFI}/$f)/Makefile 90 90 done 91 cp -f ${SRC}/ath_hal/ah_target.inc ${MADWIFI}/ath_hal92 91 93 92 echo "Copying Atheros HAL files" madwifi/branches/madwifi-free/tools/Makefile
r3693 r3885 38 38 MANDIR ?= /usr/local/man 39 39 40 ATH_HAL = $(TOP)/ath_hal41 42 40 # 43 41 # Path to the HAL source code. … … 53 51 SUBDIRS = ath_info 54 52 55 INCS = -I. -I$(HAL) -I$(TOP) -I$(ATH_HAL)53 INCS = -I. -I$(HAL) -I$(TOP) 56 54 CFLAGS = -g -O2 -Wall 57 55 ALL_CFLAGS = $(CFLAGS) $(INCS)
