Changeset 371


Ignore:
Timestamp:
Dec 29, 2017, 2:07:42 PM (6 years ago)
Author:
g7moreau
Message:
  • Add stat target and update help one
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Makefile

    r315 r371  
    99COMPDIR=/etc/bash_completion.d
    1010
    11 .PHONY: all install update sync upload help
     11.PHONY: all install update sync upload stat help
    1212
    1313all:
     
    4747        cadaver --rcfile=cadaverrc
    4848
     49stat:
     50        svn log|egrep '^r[[:digit:]]'|egrep -v '^r1[[:space:]]'|awk '{print $$3}'|sort|uniq -c                 |gnuplot -p -e 'set style fill solid 1.00 border 0; set style histogram; set style data histogram; set xtics rotate by 0; set style line 7 linetype 0 linecolor rgb "#222222"; set grid ytics linestyle 7; set xlabel "User contributor" font "bold"; set ylabel "Number of commit" font "bold"; plot "/dev/stdin" using 1:xticlabels(2) title "commit" linecolor rgb "#666666"'
     51        (echo '0 2015'; svn log|egrep '^r[[:digit:]]'|awk '{print $$5}'|cut -f 1 -d '-'|sort|uniq -c)|sort -k 2|gnuplot -p -e 'set style fill solid 1.00 border 0; set style histogram; set style data histogram; set xtics rotate by 0; set style line 7 linetype 0 linecolor rgb "#222222"; set grid ytics linestyle 7; set xlabel "Year"             font "bold"; set ylabel "Number of commit" font "bold"; plot "/dev/stdin" using 1:xticlabels(2) title "commit" linecolor rgb "#666666"'
     52
    4953help:
    50         @echo "Cibles possibles :"
    51         @echo " * all     : construction du man"
    52         @echo " * install : installation complète"
    53         @echo " * update  : installation minimale"
    54         @echo " * sync    : synchronisation avec le dépôt officiel"
     54        @echo "Possibles targets:"
     55        @echo " * all     : make manual"
     56        @echo " * install : complete install"
     57        @echo " * update  : update install (do not update cron file)"
     58        @echo " * sync    : sync with official repository"
    5559        @echo " * upload  : upload on public dav forge space"
     60        @echo " * stat    : svn stat with gnuplot graph"
Note: See TracChangeset for help on using the changeset viewer.