diff options
author | scop <scop> | 2005-03-14 20:48:04 +0000 |
---|---|---|
committer | scop <scop> | 2005-03-14 20:48:04 +0000 |
commit | d3c4ae484c2cb2850220261940e7e8e519073cad (patch) | |
tree | d419401f5740b605aa5d4da1c43714714b27fc1e /Makefile | |
parent | 1220c47fa25b8b69c7bf316da58ef51dc5d03d91 (diff) | |
download | vdr-plugin-dxr3-d3c4ae484c2cb2850220261940e7e8e519073cad.tar.gz vdr-plugin-dxr3-d3c4ae484c2cb2850220261940e7e8e519073cad.tar.bz2 |
Improve dist target a bit.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -1,7 +1,7 @@ # # Makefile for a Video Disk Recorder plugin # -# $Id: Makefile,v 1.12 2005/03/14 11:24:23 scop Exp $ +# $Id: Makefile,v 1.13 2005/03/14 20:48:04 scop Exp $ # The official name of this plugin. # This name will be used in the '-P...' option of VDR to load the plugin. @@ -88,9 +88,10 @@ dist: clean @-rm -rf $(TMPDIR)/$(ARCHIVE) @mkdir $(TMPDIR)/$(ARCHIVE) @cp -a * $(TMPDIR)/$(ARCHIVE) - @tar czf $(PACKAGE).tgz -C $(TMPDIR) $(ARCHIVE) + @tar czf $(PACKAGE).tgz -C $(TMPDIR) \ + --owner=root --group=root --exclude CVS $(ARCHIVE) @-rm -rf $(TMPDIR)/$(ARCHIVE) @echo Distribution package created as $(PACKAGE).tgz clean: - @-rm -f $(OBJS) $(DEPFILE) *.so *.tgz core* *~ + @-rm -f $(OBJS) $(DEPFILE) *.so *.tgz core* *~ \#* |