23ca767821d00fe6f8737b976e8430cbadda47ab
[openwrt/svn-archive/archive.git] / Makefile
1 #
2 # Copyright (C) 2006 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 include $(TOPDIR)/rules.mk
9 include $(INCLUDE_DIR)/kernel.mk
10
11 PKG_NAME:=alsa-driver
12 PKG_VERSION:=1.0.14rc1
13 PKG_RELEASE:=1
14
15 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
16 PKG_SOURCE_URL:=ftp://ftp.alsa-project.org/pub/driver/
17 PKG_MD5SUM:=4cff99be4b225e96663fbd61cabe3182
18
19 include $(INCLUDE_DIR)/package.mk
20
21 define KernelPackage/alsa
22 SUBMENU:=Other modules
23 DEPENDS:=@USB_SUPPORT @LINUX_2_4
24 TITLE:=Advanced Linux Sound Architecture
25 FILES:=$(PKG_BUILD_DIR)/modules/*.$(LINUX_KMOD_SUFFIX)
26 AUTOLOAD=$(call AutoLoad,70,$(shell cat ./files/alsa.modules))
27 endef
28
29 ifeq ($(KERNEL),2.4)
30 ifeq ($(LINUX_KARCH),i386)
31 KERNEL_C_OPTS:= -Os -mpreferred-stack-boundary=2 -march=i486 -fno-unit-at-a-time
32 endif
33 ifeq ($(LINUX_KARCH),mips)
34 KERNEL_C_OPTS:= -Os -G 0 -mlong-calls -mno-abicalls -fno-pic -finline-limit=100000 -mabi=32 -march=mips32 -Wa,-32 -Wa,-march=mips32 -Wa,-mips32 -Wa,--trap
35 endif
36 endif
37 ifeq ($(LINUX_KARCH),i386)
38 KERNEL_C_INCS:= -I$(LINUX_DIR)/include/asm-i386/mach-generic -I$(LINUX_DIR)/include/asm-i386/mach-default
39 endif
40 ifeq ($(LINUX_KARCH),mips)
41 KERNEL_C_INCS:= -I$(LINUX_DIR)/include/asm-mips/mach-generic
42 endif
43
44 CONFIGURE_VARS:= \
45 CFLAGS="$(KERNEL_C_INCS)"
46
47 CONFIGURE_ARGS:= \
48 --with-build="$(LINUX_DIR)" \
49 --with-kernel="$(LINUX_DIR)" \
50 --with-cross="$(KERNEL_CROSS)" \
51 --with-redhat=no \
52 --with-suse=no \
53 --with-oss=yes \
54 --with-isapnp=no \
55 --with-sequencer=no \
56 --with-cards=usb-audio
57
58 define Build/Compile
59 $(MAKE) -C $(PKG_BUILD_DIR) \
60 ARCH="$(LINUX_KARCH)" \
61 CROSS_COMPILE="$(TARGET_CROSS)" \
62 c_opts="$(KERNEL_C_OPTS)" \
63 CP="$(CP)" \
64 all
65 endef
66
67 $(eval $(call KernelPackage,alsa))