Mercurial > mplayer.hg
annotate libdha/kernelhelper/Makefile @ 8607:d6f40a06867b
Changes includes:
- Improved runtime control system
- 3 New filter panning, compressor/limiter and a noise gate
- The compressor/limiter and the noise gate are not yet finished
- The panning filter does combined mixing and channel routing and
can be used to down-mix from stereo to mono (for example)
- Improvements to volume and channel
- volume now has a very good soft clipping using sin()
- channel can handle generic routing of audio data
- Conversion of all filters to handle floating point data
- Cleanup of message printing
- Fix for the sig 11 bug reported by Denes
author | anders |
---|---|
date | Sat, 28 Dec 2002 13:59:53 +0000 |
parents | b69ddd4d3bb9 |
children | b069afd2a0de |
rev | line source |
---|---|
4472 | 1 KERNEL_INCLUDES = /usr/src/linux/include |
2 INCLUDES = -I$(KERNEL_INCLUDES) | |
7073
b69ddd4d3bb9
removed -W -Wall -g and other gcc-specific warning/debug options
arpi
parents:
4472
diff
changeset
|
3 CFLAGS = -O2 -D__KERNEL__ -DMODULE -include $(KERNEL_INCLUDES)/linux/modversions.h |
4472 | 4 VERSION = $(shell grep UTS_RELEASE $(KERNEL_INCLUDES)/linux/version.h | cut -d '"' -f2) |
5 MDIR = /lib/modules/$(VERSION)/misc | |
6 | |
7 all: dhahelper.o test | |
8 | |
9 dhahelper.o: dhahelper.c dhahelper.h | |
10 $(CC) $(CFLAGS) $(INCLUDES) -c $(basename $@).c | |
11 | |
12 test: test.c | |
7073
b69ddd4d3bb9
removed -W -Wall -g and other gcc-specific warning/debug options
arpi
parents:
4472
diff
changeset
|
13 $(CC) -O $(INCLUDES) -o $@ $@.c |
4472 | 14 |
15 install: dhahelper.o | |
16 if test ! -d $(MDIR) ; then mkdir -p $(MDIR) ; fi | |
17 install -m 644 dhahelper.o $(MDIR)/dhahelper.o | |
18 depmod -a | |
19 | |
20 dep: | |
21 | |
22 clean: | |
23 rm -f *.o *~ | |
24 | |
25 distclean: clean | |
26 rm -f test |