File: alsa-driver-1.0.11.rules

package info (click to toggle)
dphys-kernel-packages 20061027-2
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 252 kB
  • ctags: 11
  • sloc: sh: 802; makefile: 83
file content (18 lines) | stat: -rw-r--r-- 394 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# debian/rules dphys-kernel-packages fragment for alsa-driver-1.0.11

INSTALL_PATH=$(DESTDIR)/lib/modules/$(KVERS)/alsa

configure-module:
	@./configure --with-kernel=$(KSRC)

build-module:
	@/usr/bin/make -j 4

install-module:
	@if [ ! -d $(INSTALL_PATH) ] ; then \
	   /bin/mkdir -p $(INSTALL_PATH) ; \
	 fi
	@/bin/cp -p modules/* $(INSTALL_PATH)

clean-module:
	@/bin/rm -rf $(INSTALL_PATH)