]> Pileus Git - aweather/blobdiff - Makefile.am
Version 0.2.3
[aweather] / Makefile.am
index 16983622315f85a5a93c5d8ee70dd90239eee07e..06abab6b0a376b03fd8dcd83322260d6e3daf354 100644 (file)
@@ -1,21 +1,19 @@
 SUBDIRS = src data docs
 
+ACLOCAL_AMFLAGS=-I m4
+
 MAINTAINERCLEANFILES = aclocal.m4 compile config.guess config.h.in config.sub \
                       configure depcomp gtk-doc.make install-sh ltmain.sh \
                       Makefile.in missing
 
-
-ACLOCAL_AMFLAGS=-I m4
-
 test: all
        (cd src && make test)
 
 release: all dist
        @echo -en "\nRelease $(PACKAGE)-$(VERSION) (y/n): "
        @read ans && [ "$$ans" != "y" ] && exit 1 || exit 0
-       svn cp \
-               https://lug.rose-hulman.edu/svn/proj-$(PACKAGE)/trunk \
-               https://lug.rose-hulman.edu/svn/proj-$(PACKAGE)/tags/$(VERSION)
+       git tag -s -m "Version $(VERSION)" v$(VERSION)
+       git push --all
        echo $(VERSION) > LATEST
        scp LATEST $(PACKAGE)-$(VERSION).tar.* \
                "lug@lug.rose-hulman.edu:/home/lug/htdocs/proj/$(PACKAGE)"; \