X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=Makefile.am;h=5fc58154d137f6a24e8d5b07d6a4b05fe7d70697;hb=2492fbbf626e0b2a8c1e22b6e926382fcd343666;hp=8450892638f48732b821824ff93466c5ac845165;hpb=d3110e6318aa040e499479640ce33efe5ccc0f3e;p=qemu-sanity-check.git diff --git a/Makefile.am b/Makefile.am index 8450892..5fc5815 100644 --- a/Makefile.am +++ b/Makefile.am @@ -11,17 +11,27 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # -# You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +# You should have received a copy of the GNU General Public License along +# with this program; if not, write to the Free Software Foundation, Inc., +# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + +SUBDIRS = src tests EXTRA_DIST = \ - qemu-sanity-check.in \ - qemu-sanity-check.pod + .gitignore \ + qemu-sanity-check.1 \ + qemu-sanity-check.pod \ + qemu-sanity-check.pod.in -CLEANFILES = qemu-sanity-check +CLEANFILES = \ + *~ -bin_SCRIPTS = qemu-sanity-check +# Build the man pages. +qemu-sanity-check.pod: qemu-sanity-check.pod.in Makefile + rm -f $@ $@-t + $(SED) -e 's,@libdir\@,$(libdir),g' < $< > $@-t + mv $@-t $@ + chmod 0555 $@ if HAVE_POD2MAN @@ -35,4 +45,7 @@ qemu-sanity-check.1: qemu-sanity-check.pod endif -TESTS = qemu-sanity-check +# Tag HEAD with current version (maintainer only). + +maintainer-tag: + git tag -a v$(VERSION) -m "Version $(VERSION)" -f