Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1)

Unified Diff: third_party/libxslt/Makefile.am

Issue 2865973002: Check in the libxslt roll script. (Closed)
Patch Set: Consistent quotes. Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/libxslt/MAINTAINERS ('k') | third_party/libxslt/Makefile.in » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/libxslt/Makefile.am
diff --git a/third_party/libxslt/Makefile.am b/third_party/libxslt/Makefile.am
deleted file mode 100644
index 50af9b5d6e741161be35ce1b724e75b8836d599c..0000000000000000000000000000000000000000
--- a/third_party/libxslt/Makefile.am
+++ /dev/null
@@ -1,77 +0,0 @@
-SUBDIRS = \
- libxslt \
- libexslt \
- xsltproc \
- doc \
- $(PYTHON_SUBDIR) \
- tests
-
-DIST_SUBDIRS = libxslt libexslt xsltproc python doc tests
-
-confexecdir=$(libdir)
-confexec_DATA = xsltConf.sh
-
-bin_SCRIPTS = xslt-config
-
-dist-hook: cleanup libxslt.spec
- touch $(distdir)/doc/*.xml
- touch $(distdir)/doc/EXSLT/*.xml
- touch $(distdir)/libxslt/*.syms
- (cd $(srcdir) ; tar -cf - --exclude CVS --exclude .svn win32 vms examples) | (cd $(distdir); tar xf -)
-
-CVS_EXTRA_DIST =
-
-EXTRA_DIST = xsltConf.sh.in xslt-config.in libxslt.spec libxslt.spec.in \
- FEATURES TODO Copyright libxslt.m4 \
- win32/libxslt/libxslt.def win32/libxslt/libxslt.dsw \
- win32/libxslt/libxslt_so.dsp win32/libxslt/xsltproc.dsp \
- $(CVS_EXTRA_DIST)
-
-## We create xsltConf.sh here and not from configure because we want
-## to get the paths expanded correctly. Macros like srcdir are given
-## the value NONE in configure if the user doesn't specify them (this
-## is an autoconf feature, not a bug).
-
-xsltConf.sh: xsltConf.sh.in Makefile
-## Use sed and then mv to avoid problems if the user interrupts.
- sed -e 's?\@XSLT_LIBDIR\@?$(XSLT_LIBDIR)?g' \
- -e 's?\@XSLT_INCLUDEDIR\@?$(XSLT_INCLUDEDIR)?g' \
- -e 's?\@VERSION\@?$(VERSION)?g' \
- -e 's?\@XSLT_LIBS\@?$(XSLT_LIBS) $(EXTRA_LIBS)?g' \
- < $(srcdir)/xsltConf.sh.in > xsltConf.tmp \
- && mv xsltConf.tmp xsltConf.sh
-
-CLEANFILES = xsltConf.sh
-
-check-local: tests
-
-dummy:
-
-tests: dummy
- @echo '## Running the regression test suite'
- @(cd tests ; $(MAKE) tests)
- @(cd xsltproc ; $(MAKE) tests)
- @(if [ "$(PYTHON_SUBDIR)" != "" ] ; then cd python ; $(MAKE) tests ; fi)
-
-valgrind:
- @echo '## Running the regression tests under Valgrind'
- @echo '## Go get a cup of coffee it is gonna take a while ...'
- @(cd tests ; $(MAKE) CHECKER='libtool --mode=execute valgrind -q --leak-check=full' tests)
- @(cd xsltproc ; $(MAKE) CHECKER='libtool --mode=execute valgrind -q --leak-check=full' tests)
-
-cleanup:
- -@(find . -name .\#\* -exec rm {} \;)
-
-cleantar:
- @(rm -f libxslt*.tar.gz)
-
-rpm: cleantar
- @(unset CDPATH ; $(MAKE) dist && rpmbuild -ta $(distdir).tar.gz)
-
-
-pkgconfigdir=$(libdir)/pkgconfig
-pkgconfig_DATA = libxslt.pc libexslt.pc
-
-m4datadir = $(datadir)/aclocal
-m4data_DATA = libxslt.m4
-
« no previous file with comments | « third_party/libxslt/MAINTAINERS ('k') | third_party/libxslt/Makefile.in » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698