~bratsche/vlc/vlc-notify-add-actions-with-server-support

« back to all changes in this revision

Viewing changes to doc/Makefile.am

  • Committer: Bazaar Package Importer
  • Date: 2008-11-28 09:36:54 UTC
  • Revision ID: jamesw@ubuntu.com-20081128093654-cjcihcp06qc9v154
Tags: upstream-ubuntu-0.8.6.release.h
ImportĀ upstreamĀ versionĀ 0.8.6.release.h

Show diffs side-by-side

added added

removed removed

Lines of Context:
9
9
        intf-vcd.txt \
10
10
        $(NULL)
11
11
 
12
 
EXTRA_DIST = \
 
12
CHANGELOGS = \
13
13
        ChangeLog-1999 \
14
14
        ChangeLog-2000 \
15
15
        ChangeLog-2001 \
17
17
        ChangeLog-2003 \
18
18
        ChangeLog-2004 \
19
19
        ChangeLog-2005 \
 
20
        ChangeLog-2006 \
 
21
        ChangeLog-2007 \
 
22
        ChangeLog-2008 \
 
23
        $(NULL)
 
24
 
 
25
EXTRA_DIST = \
 
26
        $(CHANGELOGS) \
20
27
        vlc.1 \
21
28
        vlc-config.1 \
22
29
        bugreport-howto.txt \
39
46
        win32/Cross-Compile-Howto.txt \
40
47
        demo.sh \
41
48
        $(NULL)
 
49
 
 
50
DISTCLEANFILES = $(CHANGELOGS)
 
51
 
 
52
$(CHANGELOGS): Makefile.am
 
53
        if test -d "$(top_srcdir)/.git"; then \
 
54
                y="$$(echo "$@" | sed -e 's,ChangeLog-,,')" ; \
 
55
                git --git-dir="$(top_srcdir)/.git" log \
 
56
                        --since="$$y-01-01" \
 
57
                        --until="$$y-12-31 23:00:00 -0100" \
 
58
                        > "$@" ; \
 
59
        fi
 
60
 
 
61
# This one needs to be rebuilt all the time :)
 
62
.PHONY: ChangeLog-2008
 
63
#
 
64
#distclean-hook:
 
65
#       test "$(srcdir)" = "$(builddir)" || rm -f -- $(CHANGELOGS)