X-Git-Url: http://pileus.org/git/?p=grits;a=blobdiff_plain;f=Makefile.am;h=f8becbad00ec1cd870fd068d552efe5ce08e8acf;hp=c784619758dc7ef402601f0bae245dd95090b625;hb=cd2b3c70807c914687f9051b34a8fe029de300ee;hpb=1cf8b4ecd92f49dfbbe0472e02d4e5bc8841fe2f diff --git a/Makefile.am b/Makefile.am index c784619..f8becba 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,7 +1,35 @@ -SUBDIRS = src data docs +SUBDIRS = src docs -MAINTAINERCLEANFILES = aclocal.m4 compile config.guess config.h.in gtk-doc.make \ - configure depcomp install-sh Makefile.in missing +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 test: all (cd src && make test) + +release: all dist + @echo -en "\nRelease $(PACKAGE)-$(VERSION) (y/n): " + @read ans && [ "$$ans" != "y" ] && exit 1 || exit 0 + git tag -s -m "Version $(VERSION)" v$(VERSION) + git push --all + echo $(VERSION) > LATEST + scp LATEST $(PACKAGE)-$(VERSION).tar.* \ + "spenceal@lug.rose-hulman.edu:/home/lug/htdocs/proj/$(PACKAGE)"; \ + rm -f LATEST + +depscan: + gtkdoc-depscan \ + --book=atk \ + --book=gdk \ + --book=gdk-pixbuf \ + --book=gio \ + --book=glib \ + --book=gobject \ + --book=gtk \ + --book=libsoup-2.4 \ + --book=pango \ + --list-unknown \ + "$@" \ + src/*.c