diff options
| author | Nicolas Thill <nico@openwrt.org> | 2006-06-19 00:18:32 +0000 |
|---|---|---|
| committer | Nicolas Thill <nico@openwrt.org> | 2006-06-19 00:18:32 +0000 |
| commit | efe08c7da9d11781f5ca3b2bb69d09601e54eac3 (patch) | |
| tree | 4fdd28e891ce9f35fddba4a39f2690177baa588d /openwrt/package/wlcompat/Makefile | |
| parent | e68bb5af4a4f2892c77d9a098a0ebc314916cd6f (diff) | |
| download | mtk-20170518-efe08c7da9d11781f5ca3b2bb69d09601e54eac3.zip mtk-20170518-efe08c7da9d11781f5ca3b2bb69d09601e54eac3.tar.gz mtk-20170518-efe08c7da9d11781f5ca3b2bb69d09601e54eac3.tar.bz2 | |
move source file to src/ and let the kernel tree build the modules.
SVN-Revision: 4004
Diffstat (limited to 'openwrt/package/wlcompat/Makefile')
| -rw-r--r-- | openwrt/package/wlcompat/Makefile | 28 |
1 files changed, 21 insertions, 7 deletions
diff --git a/openwrt/package/wlcompat/Makefile b/openwrt/package/wlcompat/Makefile index 4c3632d..c6dc6d8 100644 --- a/openwrt/package/wlcompat/Makefile +++ b/openwrt/package/wlcompat/Makefile @@ -1,6 +1,7 @@ # $Id$ include $(TOPDIR)/rules.mk +include $(TOPDIR)/package/kernel.mk PKG_NAME:=kmod-wlcompat PKG_RELEASE:=3 @@ -9,11 +10,6 @@ PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME) include $(TOPDIR)/package/rules.mk -WLCOMPAT_FLAGS:=$(TARGET_CFLAGS) -D__KERNEL__ -fno-strict-aliasing -fno-common -fomit-frame-pointer -G 0 \ - -mno-abicalls -fno-pic -finline-limit=100000 -mabi=32 -march=mips32 -Wa,-32 -Wa,-march=mips32 \ - -Wa,-mips32 -Wa,--trap -DMODULE -mlong-calls -fno-common -I. -I linux-2.4 -funsigned-char -nostdinc \ - -iwithprefix include -I$(LINUX_DIR)/include -I$(LINUX_DIR)/include/asm/gcc -I$(LINUX_DIR)/arch/mips/bcm947xx/include -I$(STAGING_DIR)/usr/include -I./src/include - define Package/kmod-wlcompat SECTION:=drivers CATEGORY:=Drivers @@ -33,9 +29,27 @@ A wrapper module, that provides Wireless Extension support for the \\\ proprietary Broadcom wl module. endef +define Build/Prepare + mkdir -p $(PKG_BUILD_DIR) + $(CP) ./src/* $(PKG_BUILD_DIR)/ +endef + define Build/Compile - $(TARGET_CC) -c -o $(PKG_BUILD_DIR)/wlcompat.o $(WLCOMPAT_FLAGS) wlcompat.c - $(TARGET_CC) -c -o $(PKG_BUILD_DIR)/wlcompat-debug.o $(WLCOMPAT_FLAGS) -DDEBUG wlcompat.c + $(MAKE) -C "$(LINUX_DIR)" \ + CROSS_COMPILE="$(TARGET_CROSS)" \ + ARCH="$(LINUX_KARCH)" \ + PATH="$(TARGET_PATH)" \ + SUBDIRS="$(PKG_BUILD_DIR)" \ + EXTRA_CFLAGS="-DDEBUG -I$(LINUX_DIR)/arch/mips/bcm947xx/include -I$(PKG_BUILD_DIR)/include" \ + modules + mv $(PKG_BUILD_DIR)/wlcompat.o $(PKG_BUILD_DIR)/wlcompat-debug.o + $(MAKE) -C "$(LINUX_DIR)" \ + CROSS_COMPILE="$(TARGET_CROSS)" \ + ARCH="$(LINUX_KARCH)" \ + PATH="$(TARGET_PATH)" \ + SUBDIRS="$(PKG_BUILD_DIR)" \ + EXTRA_CFLAGS="-I$(LINUX_DIR)/arch/mips/bcm947xx/include -I$(PKG_BUILD_DIR)/include" \ + modules endef define Package/kmod-wlcompat/install |
