]> rtime.felk.cvut.cz Git - orte.git/blob - Makefile.cvs
Do not distribute autom4te.cache
[orte.git] / Makefile.cvs
1 default: cvs
2
3 cvs:
4         autoreconf -i 
5
6 all:
7         aclocal -I admin 
8         autoheader
9         automake
10         autoconf
11
12 dist: VER=$(shell git describe --match='v*' | sed -e 's/^v\(.*\)/\1/')
13 dist:
14         test ! -d orte-$(VER)
15         git archive --format=tar --prefix=orte-$(VER)/ HEAD | tar x
16         make -C orte-$(VER) -f Makefile.cvs
17         rm -rf orte-$(VER)/autom4te.cache
18         tar czf orte-$(VER).tar.gz orte-$(VER)
19         cd orte-$(VER) && ./configure && make # Check that we can compile the content of the archive
20         @echo "Tarball stored as orte-$(VER).tar.gz"