adds a new uci firewall
[openwrt.git] / package / alsa / 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 # $Id$
8
9 include $(TOPDIR)/rules.mk
10 include $(INCLUDE_DIR)/kernel.mk
11
12 PKG_NAME:=alsa-driver
13 PKG_VERSION:=1.0.14rc1
14 PKG_RELEASE:=1
15
16 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
17 PKG_SOURCE_URL:=ftp://ftp.alsa-project.org/pub/driver/
18 PKG_MD5SUM:=4cff99be4b225e96663fbd61cabe3182
19
20 include $(INCLUDE_DIR)/package.mk
21
22 define KernelPackage/alsa
23   SUBMENU:=Other modules
24   DEPENDS:=@USB_SUPPORT @LINUX_2_4
25   TITLE:=Advanced Linux Sound Architecture
26   FILES:=$(PKG_BUILD_DIR)/modules/*.$(LINUX_KMOD_SUFFIX)
27   AUTOLOAD=$(call AutoLoad,70,$(shell cat ./files/alsa.modules))
28 endef
29
30 ifeq ($(KERNEL),2.4)
31   ifeq ($(LINUX_KARCH),i386)
32     KERNEL_C_OPTS:= -Os -mpreferred-stack-boundary=2 -march=i486 -fno-unit-at-a-time
33   endif
34   ifeq ($(LINUX_KARCH),mips)
35     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
36   endif
37 endif
38 ifeq ($(LINUX_KARCH),i386)
39   KERNEL_C_INCS:= -I$(LINUX_DIR)/include/asm-i386/mach-generic -I$(LINUX_DIR)/include/asm-i386/mach-default
40 endif
41 ifeq ($(LINUX_KARCH),mips)
42   KERNEL_C_INCS:= -I$(LINUX_DIR)/include/asm-mips/mach-generic
43 endif
44
45 CONFIGURE_VARS:= \
46         CFLAGS="$(KERNEL_C_INCS)"
47
48 CONFIGURE_ARGS:= \
49         --with-build="$(LINUX_DIR)" \
50         --with-kernel="$(LINUX_DIR)" \
51         --with-cross="$(KERNEL_CROSS)" \
52         --with-redhat=no \
53         --with-suse=no \
54         --with-oss=yes \
55         --with-isapnp=no \
56         --with-sequencer=no \
57         --with-cards=usb-audio
58
59 define Build/Compile
60         $(MAKE) -C $(PKG_BUILD_DIR) \
61                 ARCH="$(LINUX_KARCH)" \
62                 CROSS_COMPILE="$(TARGET_CROSS)" \
63                 c_opts="$(KERNEL_C_OPTS)" \
64                 CP="$(CP)" \
65                 all
66 endef
67
68 $(eval $(call KernelPackage,alsa))