1 | ## Process this file with automake to produce Makefile.in
|
---|
2 |
|
---|
3 | # Automake requirements
|
---|
4 | AUTOMAKE_OPTIONS = gnits 1.8
|
---|
5 | ACLOCAL_AMFLAGS = -I config
|
---|
6 |
|
---|
7 | PACKAGE = sed
|
---|
8 |
|
---|
9 | SUBDIRS = intl lib po sed doc testsuite
|
---|
10 |
|
---|
11 | noinst_DATA = bootstrap.sh
|
---|
12 | noinst_HEADERS = basicdefs.h
|
---|
13 |
|
---|
14 | EXTRA_DIST = BUGS THANKS COPYING.DOC README.boot bootstrap.sh \
|
---|
15 | config/texi2dvi config/help2man
|
---|
16 |
|
---|
17 | html:
|
---|
18 | cd doc && make html
|
---|
19 |
|
---|
20 | DISTCHECK_CONFIGURE_FLAGS = XGETTEXT='$(SHELL) -c : dummy' $(EXTRA_DC_FLAGS)
|
---|
21 | EXTRA_DC_FLAGS =
|
---|
22 |
|
---|
23 | full-distcheck:
|
---|
24 | make distcheck EXTRA_DC_FLAGS='--enable-html'
|
---|
25 | make distcheck EXTRA_DC_FLAGS='--disable-i18n'
|
---|
26 | make distcheck EXTRA_DC_FLAGS='--disable-nls'
|
---|
27 | make distcheck EXTRA_DC_FLAGS='--without-included-regex'
|
---|
28 | make distcheck EXTRA_DC_FLAGS='--without-included-gettext'
|
---|
29 |
|
---|
30 | update-regex:
|
---|
31 | HOST=sources.redhat.com && \
|
---|
32 | BASEURL="http://$$HOST/cgi-bin/cvsweb.cgi/~checkout~/libc/posix" && \
|
---|
33 | QUERY='cvsroot=glibc&content-type=text/plain' && \
|
---|
34 | wget -O lib/regcomp.c "$$BASEURL/regcomp.c?$$QUERY" && \
|
---|
35 | wget -O lib/regexec.c "$$BASEURL/regexec.c?$$QUERY" && \
|
---|
36 | wget -O lib/regex.c "$$BASEURL/regex.c?$$QUERY" && \
|
---|
37 | wget -O lib/regex_.h "$$BASEURL/regex.h?$$QUERY" && \
|
---|
38 | wget -O lib/regex_internal.c "$$BASEURL/regex_internal.c?$$QUERY" && \
|
---|
39 | wget -O lib/regex_internal.h "$$BASEURL/regex_internal.h?$$QUERY" && \
|
---|
40 | wget -O testsuite/BOOST.tests "$$BASEURL/BOOST.tests?$$QUERY" && \
|
---|
41 | wget -O testsuite/PCRE.tests "$$BASEURL/PCRE.tests?$$QUERY" && \
|
---|
42 | wget -O testsuite/SPENCER.tests "$$BASEURL/rxspencer/tests?$$QUERY"
|
---|