source: trunk/third/vte/Makefile.am @ 18695

Revision 18695, 846 bytes checked in by ghudson, 22 years ago (diff)
This commit was generated by cvs2svn to compensate for changes in r18694, which included commits to RCS files with non-trunk default branches.
Line 
1SUBDIRS = src gnome-pty-helper python termcaps po doc
2EXTRA_DIST = HACKING vte.spec vte.pc.in
3
4pkgconfigdir = $(libdir)/pkgconfig
5pkgconfig_DATA = vte.pc
6
7CVSTAG=$(shell echo $(PACKAGE)-$(VERSION) | sed 's,[\.\-],_,g')
8
9forcetag:
10        cvs tag -cFR $(CVSTAG) .
11
12reallytag:
13        cvs tag -cR $(CVSTAG) .
14
15tag:
16        $(top_srcdir)/autogen.sh
17        $(MAKE) reallytag
18
19archive:
20        root=`cat $(top_srcdir)/CVS/Root` ; \
21        repo=`cat $(top_srcdir)/CVS/Repository` ; \
22        tmpdir=`mktemp -d /tmp/$(PACKAGE)-cvsXXXXXX` ; \
23        dir=`pwd` ; \
24        cd $$tmpdir ; \
25        cvs -d $$root export -r $(CVSTAG) $$repo ; \
26        cd $$tmpdir/$$repo ; \
27        ./autogen.sh ; \
28        make dist ; \
29        cp $(PACKAGE)-$(VERSION).tar.gz $$dir/ ; \
30        rpmbuild -tb $(PACKAGE)-$(VERSION).tar.gz || true ; \
31        rm -fr $$tmpdir
32
33srpm: $(top_srcdir)/$(PACKAGE)-$(VERSION).tar.gz
34        rpmbuild -ts $(top_srcdir)/$(PACKAGE)-$(VERSION).tar.gz
Note: See TracBrowser for help on using the repository browser.