summaryrefslogtreecommitdiff
path: root/package/rtsp/src/Makefile
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2014-05-07 21:09:43 +0200
committerWaldemar Brodkorb <wbx@openadk.org>2014-05-07 21:09:43 +0200
commit20341b4098547b4f1f8e80103d2d7e72069f731c (patch)
treea93ec86ddffb8f98168cf80ca7c12f6bee94cee4 /package/rtsp/src/Makefile
parent5d04ab914553aa65e3de2a126bef713b21deaf05 (diff)
remove unmaintained externel kernel modules
Diffstat (limited to 'package/rtsp/src/Makefile')
-rw-r--r--package/rtsp/src/Makefile24
1 files changed, 0 insertions, 24 deletions
diff --git a/package/rtsp/src/Makefile b/package/rtsp/src/Makefile
deleted file mode 100644
index d7be5bab8..000000000
--- a/package/rtsp/src/Makefile
+++ /dev/null
@@ -1,24 +0,0 @@
-ifneq ($(KERNELRELEASE),)
-# kbuild part of makefile
-ifndef CONFIG_NF_CONNTRACK
-$(error ** You need to enable NF_CONNTRACK in your kernel **)
-endif
-
-obj-m := nf_conntrack_rtsp.o nf_nat_rtsp.o
-else
-
-# Normal Makefile
-
-all:
- $(MAKE) -C $(KERNELDIR) M=`pwd` modules
-
-debug:
- $(MAKE) -C $(KERNELDIR) EXTRA_CFLAGS=-DDEBUG M=`pwd` modules
-
-modules_install:
- $(MAKE) -C $(KERNELDIR) M=`pwd` modules_install
-
-clean:
- rm -rf *.o *.ko *.mod.c .*.cmd Module.symvers modules.order .tmp_versions
-
-endif