diff options
author | Mauro Carvalho Chehab <mchehab@infradead.org> | 2006-08-31 17:52:53 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2006-08-31 17:52:53 -0300 |
commit | 49ba52cb46919c8a46c318e77edd1845b9f51178 (patch) | |
tree | 1e45bb4763a9773d00f4acebf38cc81632dc8b33 /v4l/Makefile | |
parent | 80206e1d4a136a8dc87abd8cf94882ea4a7483b0 (diff) | |
download | mediapointer-dvb-s2-49ba52cb46919c8a46c318e77edd1845b9f51178.tar.gz mediapointer-dvb-s2-49ba52cb46919c8a46c318e77edd1845b9f51178.tar.bz2 |
Allow compilation of the audio drivers
From: Mauro Carvalho Chehab <mchehab@infradead.org>
Now, make will compile also the audio drivers at the tree.
By default, they will not be installed. A new option were
added to install those files:
make sound-install
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'v4l/Makefile')
-rw-r--r-- | v4l/Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/v4l/Makefile b/v4l/Makefile index 3e9336a95..bed3a0e42 100644 --- a/v4l/Makefile +++ b/v4l/Makefile @@ -39,6 +39,7 @@ default:: config-compat.h Makefile.media links .version -include $(obj)/.myconfig -include $(obj)/Makefile.media +-include $(obj)/Makefile.sound -include $(obj)/Makefile.ivtv ################################################# @@ -52,6 +53,10 @@ ifeq ($(CONFIG_DVB_FIRESAT),m) EXTRA_CFLAGS += -I$(srctree)/drivers/ieee1394/ endif +ifeq ($(CONFIG_SOUND_ACI_MIXER),m) + EXTRA_CFLAGS += -I$(srctree)/sound/oss/ +endif + EXTRA_CFLAGS += -g EXTRA_CFLAGS += $(if $(wildcard $(srctree)/.mm), -DMM_KERNEL) |