~ubuntu-branches/ubuntu/raring/libvirt/raring

« back to all changes in this revision

Viewing changes to .pc/9002-better_default_uri_virsh.patch/tools/Makefile.am

  • Committer: Package Import Robot
  • Author(s): Chuck Short
  • Date: 2012-11-19 10:41:02 UTC
  • mfrom: (1.2.15) (223.1.2 raring-proposed)
  • Revision ID: package-import@ubuntu.com-20121119104102-l6ewdppikysbzztu
Tags: 1.0.0-0ubuntu2
debian/patches/add-armhf-sysinfo-infomration.patch: Disable
to fix FTBFS on arm.

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
        virt-sanlock-cleanup.in                         \
26
26
        virt-sanlock-cleanup.8                          \
27
27
        virsh.pod                                       \
28
 
        libvirt-guests.sysconf          \
29
 
        virsh-edit.c
 
28
        libvirt-guests.sysconf                          \
 
29
        virsh-edit.c                                    \
 
30
        virsh-domain.c                                  \
 
31
        virsh-domain-monitor.c                          \
 
32
        virsh-host.c virsh-interface.c                  \
 
33
        virsh-network.c virsh-nodedev.c                 \
 
34
        virsh-nwfilter.c virsh-pool.c                   \
 
35
        virsh-secret.c virsh-snapshot.c                 \
 
36
        virsh-volume.c
 
37
 
 
38
 
30
39
 
31
40
DISTCLEANFILES =
32
41
 
52
61
            || (rm $@ && exit 1) && chmod +x $@
53
62
 
54
63
virt-xml-validate.1: virt-xml-validate.in
55
 
        $(AM_V_GEN)$(POD2MAN) $< $(srcdir)/$@
 
64
        $(AM_V_GEN)$(POD2MAN) --name VIRT-XML-VALIDATE $< $(srcdir)/$@ \
 
65
            && if grep 'POD ERROR' $(srcdir)/$@ ; then \
 
66
                rm $(srcdir)/$@; exit 1; fi
56
67
 
57
68
virt-pki-validate: virt-pki-validate.in Makefile
58
69
        $(AM_V_GEN)sed -e 's,[@]SYSCONFDIR@,$(sysconfdir),' < $< > $@ \
59
70
            || (rm $@ && exit 1) && chmod +x $@
60
71
 
61
72
virt-pki-validate.1: virt-pki-validate.in
62
 
        $(AM_V_GEN)$(POD2MAN) $< $(srcdir)/$@
 
73
        $(AM_V_GEN)$(POD2MAN) --name VIRT-PKI-VALIDATE $< $(srcdir)/$@ \
 
74
            && if grep 'POD ERROR' $(srcdir)/$@ ; then \
 
75
                rm $(srcdir)/$@; exit 1; fi
63
76
 
64
77
virt-host-validate.1: virt-host-validate.c
65
 
        $(AM_V_GEN)$(POD2MAN) $< $(srcdir)/$@
 
78
        $(AM_V_GEN)$(POD2MAN) --name VIRT-HOST-VALIDATE $< $(srcdir)/$@ \
 
79
            && if grep 'POD ERROR' $(srcdir)/$@ ; then \
 
80
                rm $(srcdir)/$@; exit 1; fi
66
81
 
67
82
virt-sanlock-cleanup: virt-sanlock-cleanup.in Makefile
68
83
        $(AM_V_GEN)sed -e 's,[@]SYSCONFDIR@,$(sysconfdir),' \
70
85
            || (rm $@ && exit 1) && chmod +x $@
71
86
 
72
87
virt-sanlock-cleanup.8: virt-sanlock-cleanup.in
73
 
        $(AM_V_GEN)$(POD2MAN) $< $(srcdir)/$@
 
88
        $(AM_V_GEN)$(POD2MAN) --name VIRT-SANLOCK-CLEANUP $< $(srcdir)/$@ \
 
89
            && if grep 'POD ERROR' $(srcdir)/$@ ; then \
 
90
                rm $(srcdir)/$@; exit 1; fi
74
91
 
75
92
virt_host_validate_SOURCES = \
76
93
                virt-host-validate.c \
96
113
 
97
114
virsh_SOURCES =                                                 \
98
115
                console.c console.h                             \
99
 
                virsh.c
 
116
                virsh.c virsh.h                                 \
 
117
                virsh-domain.c virsh-domain.h                   \
 
118
                virsh-domain-monitor.c virsh-domain-monitor.h   \
 
119
                virsh-host.c virsh-host.h                       \
 
120
                virsh-interface.c virsh-interface.h             \
 
121
                virsh-network.c virsh-network.h                 \
 
122
                virsh-nodedev.c virsh-nodedev.h                 \
 
123
                virsh-nwfilter.c virsh-nwfilter.h               \
 
124
                virsh-pool.c virsh-pool.h                       \
 
125
                virsh-secret.c virsh-secret.h                   \
 
126
                virsh-snapshot.c virsh-snapshot.h               \
 
127
                virsh-volume.c virsh-volume.h                   \
 
128
                $(NULL)
100
129
 
101
130
virsh_LDFLAGS = $(WARN_LDFLAGS) $(COVERAGE_LDFLAGS)
102
131
virsh_LDADD =                                                   \
141
170
endif
142
171
 
143
172
virsh.1: virsh.pod
144
 
        $(AM_V_GEN)$(POD2MAN) $< $(srcdir)/$@
 
173
        $(AM_V_GEN)$(POD2MAN) $< $(srcdir)/$@ \
 
174
            && if grep 'POD ERROR' $(srcdir)/$@ ; then \
 
175
                rm $(srcdir)/$@; exit 1; fi
145
176
 
146
177
install-data-local: install-init install-systemd
147
178