Changeset 10
- Timestamp:
- 03/15/03 19:30:30 (9 years ago)
- Files:
-
- cvs-import/trunk/Makefile (added)
- cvs-import/trunk/Makefile.inc (added)
- cvs-import/trunk/ath_hal/Makefile (modified) (2 diffs)
- cvs-import/trunk/driver/Makefile (modified) (2 diffs)
- cvs-import/trunk/wlan/Makefile (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
cvs-import/trunk/ath_hal/Makefile
r3 r10 11 11 # 12 12 13 # 14 # Path to the HAL source code. 15 # 16 HAL= ../hal 13 include ../Makefile.inc 17 14 18 15 AH_SRCS=${HAL}/ah.c ${HAL}/ah_regdomain.c … … 42 39 OBJS= ${AH_OBJS} ${AR5210_OBJS} ${AR5211_OBJS} ${AR5212_OBJS} 43 40 44 CFLAGS= -I. -I${HAL} -D_BUILD_STANDALONE_ -D__KERNEL__ -O41 CFLAGS= -I. -I${HAL} -D_BUILD_STANDALONE_ ${COPTS} 45 42 46 43 hal.o: hal_syms.o Makefile cvs-import/trunk/driver/Makefile
r9 r10 3 3 # Makefile for the Atheros WLAN driver. 4 4 # 5 DESTDIR= 6 7 VERSION= 2.4.20 8 9 # 10 # Path to the HAL source code. 11 # 12 HAL= ../hal 13 # 14 # Path to the build area for the HAL. 15 # 16 ATH_HAL=../ath_hal 17 # 18 # Path to the 802.11 include files 19 # 20 WLAN= ../wlan 21 # 22 # Path to the Linux kernel include files. 23 # 24 LINUX= ../../linux-${VERSION}/include 5 include ../Makefile.inc 25 6 26 7 SRCS= ah_osdep.c if_ath.c if_ath_cs.c if_ath_pci.c … … 32 13 33 14 CFLAGS= -I. -I${ATH_HAL} -I${HAL} -I${WLAN} -I${LINUX} \ 34 -D_BUILD_STANDALONE_ -D__KERNEL__ -DMODULE -g -O15 -D_BUILD_STANDALONE_ -D__KERNEL__ -DMODULE ${COPTS} 35 16 36 17 #ALL= ath_cs.o ath_pci.o cvs-import/trunk/wlan/Makefile
r7 r10 3 3 # Makefile for the 802.11 WLAN module. 4 4 # 5 DESTDIR= 6 7 VERSION= 2.4.20 8 9 # 10 # Path to the Linux kernel include files. 11 # 12 LINUX= ../../linux-${VERSION}/include 5 include ../Makefile.inc 13 6 14 7 SRCS= if_ieee80211subr.c if_media.c rc4.c 15 8 OBJS= if_ieee80211subr.o if_media.o rc4.o 16 9 17 #CFLAGS= -I. -I${LINUX} -D__KERNEL__ -DMODULE -g -O18 CFLAGS= -I. -I${LINUX} -D__KERNEL__ -g -O10 #CFLAGS= -I. -I${LINUX} -D__KERNEL__ -DMODULE ${COPTS} 11 CFLAGS= -I. -I${LINUX} -D__KERNEL__ ${COPTS} 19 12 20 13 all: wlan.o
