]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blame - lfs/alsa
Optimized wireless module build.
[people/pmueller/ipfire-2.x.git] / lfs / alsa
CommitLineData
bc8ca5e4 1###############################################################################
bc8ca5e4 2# #
70df8302
MT
3# IPFire.org - A linux based firewall #
4# Copyright (C) 2007 Michael Tremer & Christian Schmidt #
5# #
6# This program is free software: you can redistribute it and/or modify #
bc8ca5e4 7# it under the terms of the GNU General Public License as published by #
70df8302 8# the Free Software Foundation, either version 3 of the License, or #
bc8ca5e4
MT
9# (at your option) any later version. #
10# #
70df8302 11# This program is distributed in the hope that it will be useful, #
bc8ca5e4
MT
12# but WITHOUT ANY WARRANTY; without even the implied warranty of #
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
14# GNU General Public License for more details. #
15# #
16# You should have received a copy of the GNU General Public License #
70df8302 17# along with this program. If not, see <http://www.gnu.org/licenses/>. #
bc8ca5e4
MT
18# #
19###############################################################################
20
21###############################################################################
22# Definitions
23###############################################################################
24
25include Config
26
2b2e03ed
AF
27ifeq "$(XEN)" "1"
28 VERSUFIX=ipfire-xen
29else
30 VERSUFIX=ipfire
31endif
32
a8a3fbc0
AF
33VER = 1.0.21a
34UVER = 1.0.21
35FVER = 1.0.20
36DVER = 1.0.21
bc8ca5e4
MT
37
38THISAPP = alsa-lib-$(VER)
39DL_FILE = $(THISAPP).tar.bz2
40DL_FROM = $(URL_IPFIRE)
41DIR_APP = $(DIR_SRC)/$(THISAPP)
bc8ca5e4 42PROG = alsa
a8a3fbc0 43PAK_VER = 6
bc8ca5e4 44
bc8ca5e4
MT
45DEPS = ""
46
2b2e03ed
AF
47ifeq "$(KMOD)" "1"
48 TARGET = $(DIR_INFO)/$(THISAPP)-kmod-$(KVER)-$(VERSUFIX)
49else
50 TARGET = $(DIR_INFO)/$(THISAPP)
51endif
52
bc8ca5e4
MT
53###############################################################################
54# Top-level Rules
55###############################################################################
56
a8a3fbc0
AF
57objects = $(DL_FILE) alsa-utils-$(UVER).tar.bz2 alsa-firmware-$(FVER).tar.bz2 \
58 alsa-driver-$(DVER).tar.bz2
bc8ca5e4
MT
59
60$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
a8a3fbc0
AF
61alsa-utils-$(UVER).tar.bz2 = $(DL_FROM)/alsa-utils-$(UVER).tar.bz2
62alsa-firmware-$(FVER).tar.bz2 = $(DL_FROM)/alsa-firmware-$(FVER).tar.bz2
63alsa-driver-$(DVER).tar.bz2 = $(DL_FROM)/alsa-driver-$(DVER).tar.bz2
bc8ca5e4 64
a8a3fbc0
AF
65$(DL_FILE)_MD5 = 914685deb8c23cb4b940a4173cf8efe4
66alsa-utils-$(UVER).tar.bz2_MD5 = 3672287c2608040d111ce45495ba7602
67alsa-firmware-$(FVER).tar.bz2_MD5 = 75fe079c35c091cac49f3a60876bc26a
68alsa-driver-$(DVER).tar.bz2_MD5 = 3ee5ec5357f237dc78847feb85d8560d
bc8ca5e4
MT
69
70install : $(TARGET)
71
72check : $(patsubst %,$(DIR_CHK)/%,$(objects))
73
74download :$(patsubst %,$(DIR_DL)/%,$(objects))
75
76md5 : $(subst %,%_MD5,$(objects))
77
78dist:
79 @$(PAK)
80
81###############################################################################
82# Downloading, checking, md5sum
83###############################################################################
84
85$(patsubst %,$(DIR_CHK)/%,$(objects)) :
86 @$(CHECK)
87
88$(patsubst %,$(DIR_DL)/%,$(objects)) :
89 @$(LOAD)
90
91$(subst %,%_MD5,$(objects)) :
92 @$(MD5)
93
94###############################################################################
95# Installation Details
96###############################################################################
97
98$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
99 @$(PREBUILD)
4ef84d05
AF
100 @rm -rf $(DIR_SRC)/alsa*
101ifeq "$(KMOD)" "1"
a8a3fbc0
AF
102 cd $(DIR_SRC) && tar xfj $(DIR_DL)/alsa-driver-$(DVER).tar.bz2
103 cd $(DIR_SRC)/alsa-driver-$(DVER) && sed -i -e "s| soc/ | |g" Makefile
104 cd $(DIR_SRC)/alsa-driver-$(DVER) && sed -i -e "s| soc||g" Makefile
105 cd $(DIR_SRC)/alsa-driver-$(DVER) && ./configure --with-kernel=/usr/src/linux
106 cd $(DIR_SRC)/alsa-driver-$(DVER) && make $(MAKETUNING) $(EXTRA_MAKE)
107 cd $(DIR_SRC)/alsa-driver-$(DVER) && make install
4ef84d05
AF
108else
109 cd $(DIR_SRC) && tar jxf $(DIR_DL)/$(DL_FILE)
bc8ca5e4 110 cd $(DIR_APP) && ./configure --enable-static
fcc53523 111 cd $(DIR_APP) && make $(MAKETUNING) $(EXTRA_MAKE)
bc8ca5e4 112 cd $(DIR_APP) && make install
a8a3fbc0
AF
113 cd $(DIR_SRC) && tar xfj $(DIR_DL)/alsa-utils-$(UVER).tar.bz2
114 cd $(DIR_SRC)/alsa-utils-$(UVER) && ./configure --disable-xmlto
115 cd $(DIR_SRC)/alsa-utils-$(UVER) && make $(MAKETUNING) $(EXTRA_MAKE)
116 cd $(DIR_SRC)/alsa-utils-$(UVER) && make install
117 cd $(DIR_SRC) && tar xfj $(DIR_DL)/alsa-firmware-$(FVER).tar.bz2
118 cd $(DIR_SRC)/alsa-firmware-$(FVER) && ./configure
119 cd $(DIR_SRC)/alsa-firmware-$(FVER) && make $(MAKETUNING) $(EXTRA_MAKE)
120 cd $(DIR_SRC)/alsa-firmware-$(FVER) && make install
4ef84d05 121endif
bc8ca5e4
MT
122 @rm -rf $(DIR_SRC)/alsa*
123 @$(POSTBUILD)