summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMidas <vdrportal_midas@gmx.de>2010-06-08 12:52:10 +0200
committerMidas <vdrportal_midas@gmx.de>2010-06-08 12:52:10 +0200
commit891bfb5ba9f052f9a97ef0abedeb039236701755 (patch)
tree839838706677c12ff9f0b9a6a1ee0bdd5926fba3 /Makefile
parent4753e96fbaaf0ac96ea8a8512e90819591cdc723 (diff)
downloadvdr-plugin-block-891bfb5ba9f052f9a97ef0abedeb039236701755.tar.gz
vdr-plugin-block-891bfb5ba9f052f9a97ef0abedeb039236701755.tar.bz2
This version completes the basic parental guidance
functions. I will update README soon.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 2 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 3d3ce34..adc5a3f 100644
--- a/Makefile
+++ b/Makefile
@@ -41,7 +41,7 @@ APIVERSION = $(shell sed -ne '/define APIVERSION/s/^.*"\(.*\)".*$$/\1/p' $(VDRDI
### The name of the distribution archive:
ARCHIVE = $(PLUGIN)-$(VERSION)
-PACKAGE = vdr-plugin-$(ARCHIVE)
+PACKAGE = vdr-$(ARCHIVE)
### Includes and Defines (add further entries here):
@@ -110,11 +110,10 @@ dist: clean
@-rm -rf $(TMPDIR)/$(ARCHIVE)
@mkdir $(TMPDIR)/$(ARCHIVE)
@cp -a * $(TMPDIR)/$(ARCHIVE)
- @tar czf $(PACKAGE).tgz -C $(TMPDIR) --exclude debian --exclude .git $(ARCHIVE)
+ @tar czf $(PACKAGE).tgz -C $(TMPDIR) --exclude debian --exclude CVS --exclude .svn $(ARCHIVE)
@-rm -rf $(TMPDIR)/$(ARCHIVE)
@echo Distribution package created as $(PACKAGE).tgz
clean:
@-rm -f $(PODIR)/*.mo $(PODIR)/*.pot
@-rm -f $(OBJS) $(DEPFILE) *.so *.tgz core* *~ $(PODIR)/*.mo $(PODIR)/*.pot
-