Import hda-verb 0.4 to alsa-tools repo

Signed-off-by: Takashi Iwai <tiwai@suse.de>
This commit is contained in:
Takashi Iwai 2012-04-20 15:48:01 +02:00
parent d06008f397
commit 21e250bfbc
6 changed files with 455 additions and 1 deletions

15
hda-verb/Makefile Normal file
View file

@ -0,0 +1,15 @@
VERSION = 0.4
CC = gcc
CFLAGS = -Wall -O2 -g
hda-verb: hda-verb.o
$(CC) -o $@ hda-verb.o
clean:
rm -f hda-verb *.o
dist:
cd ..; mv hda-verb hda-verb-$(VERSION); \
tar cfz hda-verb-$(VERSION).tar.gz --exclude='.git*' hda-verb-$(VERSION); \
mv hda-verb-$(VERSION) hda-verb