summaryrefslogtreecommitdiff
path: root/v4l_experimental/pvrusb2/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'v4l_experimental/pvrusb2/Makefile')
-rw-r--r--v4l_experimental/pvrusb2/Makefile71
1 files changed, 7 insertions, 64 deletions
diff --git a/v4l_experimental/pvrusb2/Makefile b/v4l_experimental/pvrusb2/Makefile
index 88eb298b6..0c43d6977 100644
--- a/v4l_experimental/pvrusb2/Makefile
+++ b/v4l_experimental/pvrusb2/Makefile
@@ -1,67 +1,10 @@
+BUILD_DIR := $(shell pwd)/../..
-# Mike Isely <isely@pobox.com>
+all:
+ $(MAKE) -C $(BUILD_DIR) pvrusb2
-# This is the module build file for pvrusb2 (ONLY when built as part
-# of v4l in the experimental area). It requires the kbuild system
-# from any 2.6.x kernel. It requires the kbuild system from any 2.6.x
-# kernel (but it's only been tried against kernels 2.6.10 and later).
-# This WILL NOT BUILD for 2.4.x kernels. Don't even bother trying.
-# Even if you were to fix this build for 2.4.x, you would still have
-# to port the driver as well. Everything here assumes 2.6.x.
-
-# To build, you can just run this Makefile. There are several
-# variables you may want to override however:
-
-# KDIR - Path to kernel source tree
-# KREL - Version of kernel, i.e. 'uname -r' output
-# INSTALL_MOD_DIR - where within the module tree to put the driver
-
-# If you do not override anything, then KREL is set to the result of
-# 'uname -r', KDIR is set to '/lib/modules/$(KREL)/build', and
-# INSTALL_MOD_DIR is set to 'pvrusb2'. If you choose to override
-# KDIR, then you do _NOT_ need to worry about KREL, as KREL is only
-# used here when calculating KDIR. If the default path for KDIR is
-# only wrong in terms of version element, then you can just override
-# KREL with the corrected value.
-
-# Sensible build targets include 'modules' (same as no target),
-# 'install', and 'clean'
-
-# For building within the v4l experimental area, we have to adjust our
-# include paths and also ensure that the environment as been set up
-# (which is presumably what the "links" callout is for).
-
-ifeq ($(KERNELRELEASE),)
-
- # Override any of these if you'd like
- ifeq ($(strip $(KREL)),)
- KREL := $(shell uname -r)
- endif
- ifeq ($(strip $(KDIR)),)
- KDIR := /lib/modules/$(KREL)/build
- endif
- INSTALL_MOD_DIR := pvrusb2
-
- .PHONY: all default install clean modules
- default: all
- all: modules
-
- M:=$(shell pwd)
-
- CPPFLAGS:= -D__KERNEL__ -I$(M)/../../linux/include -I$(M)/../../v4l $(CPPFLAGS) -I$(KDIR)/include
-
- modules modules_install clean:
- $(MAKE) -C $(M)/../.. links
- $(MAKE) INSTALL_MOD_DIR=$(INSTALL_MOD_DIR) "CPPFLAGS=$(CPPFLAGS)" -C $(KDIR) M=$(M) CONFIG_VIDEO_PVRUSB2=m $@
-
- install:
- $(MAKE) -C $(M)/../.. links
- $(MAKE) INSTALL_MOD_DIR=$(INSTALL_MOD_DIR) "CPPFLAGS=$(CPPFLAGS)" -C $(KDIR) M=$(M) CONFIG_VIDEO_PVRUSB2=m modules_install
-
-else
-
- # Backwards compatibility in case kbuild can't find Kbuild on its own.
- include Kbuild
-
-endif
+install:
+ $(MAKE) -C $(BUILD_DIR) install
+%::
+ $(MAKE) -C $(BUILD_DIR) $(MAKECMDGOALS)