source: trunk/ddt/Makefile @ 227

Last change on this file since 227 was 227, checked in by g7moreau, 6 years ago
  • Uodate tag Id and clean training space
File size: 2.2 KB
RevLine 
[151]1DESTDIR=
2
[152]3BINDIR=/usr/bin
[151]4MANDIR=/usr/share/man/man1
[222]5SHAREDIR=/usr/share/ddt
[151]6COMPDIR=/etc/bash_completion.d
7
[215]8.PHONY: all ignore install update sync upload stat help pkg
[151]9
10all:
[222]11        pod2man ddt | gzip > ddt.1.gz
12        pod2html ddt > ddt.html
[151]13
14install: update
15
16update:
17        @install -d -m 0755 -o root -g root $(DESTDIR)/$(SHAREDIR)
[165]18        @install -d -m 0755 -o root -g root $(DESTDIR)/$(MANDIR)
[185]19        @install -d -m 0755 -o root -g root $(DESTDIR)/$(COMPDIR)
[151]20
[222]21        install    -m 0755 -o root -g root ddt $(DESTDIR)/$(BINDIR)
[151]22
[222]23        install    -m 0644 -o root -g root ddt.1.gz $(DESTDIR)/$(MANDIR)
[151]24
[222]25        install    -m 0644 -o root -g root config.sample.yml $(DESTDIR)/$(SHAREDIR)
[151]26
[222]27        install    -m 0644 -o root -g root ddt.bash_completion $(DESTDIR)/$(COMPDIR)/ddt
[151]28
29sync:
30        svn update
31
32upload:
33        cadaver --rcfile=cadaverrc
34
[207]35pkg: all
36        ./make-package-debian
37
[151]38stat:
39        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"'
40        (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"'
41
42help:
43        @echo "Possibles targets:"
44        @echo " * all     : make manual"
45        @echo " * install : complete install"
46        @echo " * update  : update install (do not update cron file)"
47        @echo " * sync    : sync with official repository"
48        @echo " * upload  : upload on public dav forge space"
49        @echo " * stat    : svn stat with gnuplot graph"
[207]50        @echo " * pkg     : build Debian package"
[215]51        @echo "ignore - svn rules to ignore some files"
52
53ignore: svnignore.txt
54        svn propset svn:ignore -F svnignore.txt .
[227]55        svn propset svn:keywords "Id" ddt
Note: See TracBrowser for help on using the repository browser.