summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authoretobi <git@e-tobi.net>2013-09-03 09:48:38 +0200
committeretobi <git@e-tobi.net>2013-09-03 09:48:38 +0200
commit6e40287e2f39a80fc72bd8d0fbc1a8334d688c2d (patch)
tree024bef311226653bdd1da4fa588becf5098bcff7 /Makefile
downloadlinux-dvb-apps-6e40287e2f39a80fc72bd8d0fbc1a8334d688c2d.tar.gz
Imported Upstream version 1.1.0upstream/1.1.0
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile28
1 files changed, 28 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..e0eadcf
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,28 @@
+# Makefile for linuxtv.org dvb-apps
+
+VERSION := 1.1.0
+PACKAGE := linuxtv-dvb-apps-$(VERSION)
+CVSROOT := $(shell cat CVS/Root)
+RELEASE_TAG := LINUXTV-DVB-$(subst .,_,$(subst -,_,$(VERSION)))
+
+all:
+
+release dist:
+ rm -rf release-tmp $(PACKAGE).tar.gz
+ mkdir release-tmp
+ ( cd release-tmp; cvs -d$(CVSROOT) export -r$(RELEASE_TAG) -d$(PACKAGE) dvb-apps )
+ find release-tmp -name .cvsignore | xargs rm -v
+ ( cd release-tmp; tar cjf ../$(PACKAGE).tar.bz2 $(PACKAGE) )
+ rm -rf release-tmp
+ @echo
+ @echo --------------------------------------------------------------------------------
+ @echo
+ @echo "dist package: ./$(PACKAGE).tar.bz2"
+ @echo
+ @echo --------------------------------------------------------------------------------
+ @echo
+
+%::
+# $(MAKE) -C libdvb2 $(MAKECMDGOALS)
+ $(MAKE) -C util $(MAKECMDGOALS)
+ $(MAKE) -C test $(MAKECMDGOALS)
hlight'> 2014-12-21dtv-scan-tables: update dvb-t/au-BrisbaneBrian Burch1-2/+2 Update dvb-t/au-Brisbane as per Brian Burch's bug report on Ubuntu Launchpad: https://bugs.launchpad.net/ubuntu/+source/dtv-scan-tables/+bug/1393280 Signed-off-by: Jonathan McCrohan <jmccrohan@gmail.com> 2014-12-21updateOlliver Schinagl1-9/+9 Signed-off-by: Olliver Schinagl <oliver@schinagl.nl> 2014-11-30dtv-scan-tables: fix the DNA muxes in Finland to DVB-T2Olli Salonen34-102/+102 All of the DNA muxes in Finland are DVB-T2, not DVB-T. Signed-off-by: Olli Salonen <olli.salonen@iki.fi> 2014-11-30dtv-scan-tables: add mux H to stations transmitting it in FinlandOlli Salonen6-30/+60 The new mux H is being broadcasted by Digita from 6 stations in Finland. Signed-off-by: Olli Salonen <olli.salonen@iki.fi> 2014-11-10Delete DVBv3 comments from DVBv5 scan filesJonathan McCrohan494-496/+0 Probably should have happened as part of 06e54ff. Signed-off-by: Jonathan McCrohan <jmccrohan@gmail.com>