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

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