~plaxx/backintime/explicit-ssh-private-key

« back to all changes in this revision

Viewing changes to common/Makefile.template

  • Committer: Germar
  • Date: 2015-02-24 12:09:46 UTC
  • Revision ID: germar-20150224120946-tqqo2j873s7zmhdu
add bash-completion

Show diffs side-by-side

added added

removed removed

Lines of Context:
49
49
        install -d $(DEST)/../etc/xdg/autostart
50
50
        install --mode=644 backintime.desktop $(DEST)/../etc/xdg/autostart
51
51
 
 
52
        #install bash-completition
 
53
        install -d $(DEST)/bash-completion/completions
 
54
        install --mode=644 bash-completion/* $(DEST)/bash-completion/completions
 
55
 
52
56
compress:
53
57
        #man pages
54
58
        for i in $$(ls -1 man/C/); do case $$i in *.gz|*~) continue;; *) gzip --best -c man/C/$$i > man/C/$${i}.gz;; esac; done