|
Revision 52, 1.6 kB
(checked in by inz, 2 years ago)
|
Import vte to svn.
|
| Line | |
|---|
| 1 |
SUBDIRS = src python termcaps po doc |
|---|
| 2 |
EXTRA_DIST = MAINTAINERS HACKING vte.spec vte.pc.in vte-uninstalled.pc.in \ |
|---|
| 3 |
intltool-extract.in intltool-merge.in intltool-update.in |
|---|
| 4 |
DISTCLEANFILES = intltool-extract intltool-merge intltool-update |
|---|
| 5 |
|
|---|
| 6 |
if BUILD_GNOME_PTY_HELPER |
|---|
| 7 |
SUBDIRS += gnome-pty-helper |
|---|
| 8 |
endif |
|---|
| 9 |
|
|---|
| 10 |
pkgconfigdir = $(libdir)/pkgconfig |
|---|
| 11 |
pkgconfig_DATA = vte.pc |
|---|
| 12 |
|
|---|
| 13 |
CVSTAG=$(shell echo $(PACKAGE)-$(VERSION) | sed 's,[\.\-],_,g') |
|---|
| 14 |
|
|---|
| 15 |
forcetag: |
|---|
| 16 |
cvs tag -cFR $(CVSTAG) . |
|---|
| 17 |
|
|---|
| 18 |
reallytag: |
|---|
| 19 |
cvs tag -cR $(CVSTAG) . |
|---|
| 20 |
|
|---|
| 21 |
up: |
|---|
| 22 |
cvs up -dP |
|---|
| 23 |
|
|---|
| 24 |
tag: |
|---|
| 25 |
$(top_srcdir)/autogen.sh |
|---|
| 26 |
$(MAKE) reallytag |
|---|
| 27 |
|
|---|
| 28 |
archive: |
|---|
| 29 |
root=`cat $(top_srcdir)/CVS/Root` ; \ |
|---|
| 30 |
repo=`cat $(top_srcdir)/CVS/Repository` ; \ |
|---|
| 31 |
tmpdir=`mktemp -d /tmp/$(PACKAGE)-cvsXXXXXX` ; \ |
|---|
| 32 |
dir=`pwd` ; \ |
|---|
| 33 |
cd $$tmpdir ; \ |
|---|
| 34 |
cvs -d $$root export -r $(CVSTAG) $$repo ; \ |
|---|
| 35 |
cd $$tmpdir/$$repo ; \ |
|---|
| 36 |
./autogen.sh ; \ |
|---|
| 37 |
make dist ; \ |
|---|
| 38 |
cp $(PACKAGE)-$(VERSION).tar.gz $$dir/ ; \ |
|---|
| 39 |
rpmbuild -tb $(PACKAGE)-$(VERSION).tar.gz || true ; \ |
|---|
| 40 |
rm -fr $$tmpdir |
|---|
| 41 |
|
|---|
| 42 |
srpm: $(top_srcdir)/$(PACKAGE)-$(VERSION).tar.gz |
|---|
| 43 |
rpmbuild -ts $(top_srcdir)/$(PACKAGE)-$(VERSION).tar.gz |
|---|
| 44 |
|
|---|
| 45 |
DISTCHECK_CONFIGURE_FLAGS = --enable-gtk-doc |
|---|
| 46 |
|
|---|
| 47 |
MAINTAINERCLEANFILES = \ |
|---|
| 48 |
$(srcdir)/INSTALL \ |
|---|
| 49 |
$(srcdir)/aclocal.m4 \ |
|---|
| 50 |
$(srcdir)/autoscan.log \ |
|---|
| 51 |
$(srcdir)/compile \ |
|---|
| 52 |
$(srcdir)/config.guess \ |
|---|
| 53 |
$(srcdir)/config.h.in \ |
|---|
| 54 |
$(srcdir)/config.sub \ |
|---|
| 55 |
$(srcdir)/configure \ |
|---|
| 56 |
$(srcdir)/configure.scan \ |
|---|
| 57 |
$(srcdir)/depcomp \ |
|---|
| 58 |
$(srcdir)/install-sh \ |
|---|
| 59 |
$(srcdir)/ltmain.sh \ |
|---|
| 60 |
$(srcdir)/missing \ |
|---|
| 61 |
$(srcdir)/mkinstalldirs \ |
|---|
| 62 |
$(srcdir)/omf.make \ |
|---|
| 63 |
$(srcdir)/xmldocs.make \ |
|---|
| 64 |
$(srcdir)/gtk-doc.make \ |
|---|
| 65 |
$(srcdir)/po/Makefile.in.in \ |
|---|
| 66 |
`find "$(srcdir)" -type f -name Makefile.in -print` |
|---|