@helm2/poc_jenki_rce 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of @helm2/poc_jenki_rce might be problematic. Click here for more details.
- package/LICENSE +19 -0
- package/Makefile +18 -0
- package/README.md +52 -0
- package/binding.gyp +81 -0
- package/index.d.ts +273 -0
- package/index.js +45 -0
- package/lib/bindings.js +1 -0
- package/lib/document.js +118 -0
- package/lib/element.js +82 -0
- package/lib/sax_parser.js +38 -0
- package/package.json +70 -0
- package/src/html_document.cc +7 -0
- package/src/html_document.h +18 -0
- package/src/libxmljs.cc +252 -0
- package/src/libxmljs.h +53 -0
- package/src/xml_attribute.cc +173 -0
- package/src/xml_attribute.h +40 -0
- package/src/xml_comment.cc +117 -0
- package/src/xml_comment.h +30 -0
- package/src/xml_document.cc +810 -0
- package/src/xml_document.h +67 -0
- package/src/xml_element.cc +565 -0
- package/src/xml_element.h +61 -0
- package/src/xml_namespace.cc +158 -0
- package/src/xml_namespace.h +39 -0
- package/src/xml_node.cc +761 -0
- package/src/xml_node.h +73 -0
- package/src/xml_pi.cc +161 -0
- package/src/xml_pi.h +34 -0
- package/src/xml_sax_parser.cc +424 -0
- package/src/xml_sax_parser.h +73 -0
- package/src/xml_syntax_error.cc +66 -0
- package/src/xml_syntax_error.h +25 -0
- package/src/xml_text.cc +320 -0
- package/src/xml_text.h +48 -0
- package/src/xml_textwriter.cc +315 -0
- package/src/xml_textwriter.h +62 -0
- package/src/xml_xpath_context.cc +70 -0
- package/src/xml_xpath_context.h +23 -0
- package/vendor/libxml/Copyright +23 -0
- package/vendor/libxml/DOCBparser.c +305 -0
- package/vendor/libxml/HTMLparser.c +7287 -0
- package/vendor/libxml/HTMLtree.c +1200 -0
- package/vendor/libxml/Makefile +2983 -0
- package/vendor/libxml/SAX.c +180 -0
- package/vendor/libxml/SAX2.c +3036 -0
- package/vendor/libxml/buf.c +1351 -0
- package/vendor/libxml/buf.h +72 -0
- package/vendor/libxml/c14n.c +2234 -0
- package/vendor/libxml/catalog.c +3828 -0
- package/vendor/libxml/chvalid.c +336 -0
- package/vendor/libxml/config.h +294 -0
- package/vendor/libxml/config.h.gch +0 -0
- package/vendor/libxml/debugXML.c +3423 -0
- package/vendor/libxml/dict.c +1298 -0
- package/vendor/libxml/elfgcchack.h +17818 -0
- package/vendor/libxml/enc.h +32 -0
- package/vendor/libxml/encoding.c +3975 -0
- package/vendor/libxml/entities.c +1163 -0
- package/vendor/libxml/error.c +998 -0
- package/vendor/libxml/globals.c +1126 -0
- package/vendor/libxml/hash.c +1146 -0
- package/vendor/libxml/include/libxml/DOCBparser.h +96 -0
- package/vendor/libxml/include/libxml/HTMLparser.h +306 -0
- package/vendor/libxml/include/libxml/HTMLtree.h +147 -0
- package/vendor/libxml/include/libxml/Makefile +725 -0
- package/vendor/libxml/include/libxml/Makefile.am +54 -0
- package/vendor/libxml/include/libxml/Makefile.in +725 -0
- package/vendor/libxml/include/libxml/SAX.h +173 -0
- package/vendor/libxml/include/libxml/SAX2.h +178 -0
- package/vendor/libxml/include/libxml/c14n.h +128 -0
- package/vendor/libxml/include/libxml/catalog.h +182 -0
- package/vendor/libxml/include/libxml/chvalid.h +230 -0
- package/vendor/libxml/include/libxml/debugXML.h +217 -0
- package/vendor/libxml/include/libxml/dict.h +79 -0
- package/vendor/libxml/include/libxml/encoding.h +245 -0
- package/vendor/libxml/include/libxml/entities.h +151 -0
- package/vendor/libxml/include/libxml/globals.h +508 -0
- package/vendor/libxml/include/libxml/hash.h +236 -0
- package/vendor/libxml/include/libxml/list.h +137 -0
- package/vendor/libxml/include/libxml/nanoftp.h +163 -0
- package/vendor/libxml/include/libxml/nanohttp.h +81 -0
- package/vendor/libxml/include/libxml/parser.h +1243 -0
- package/vendor/libxml/include/libxml/parserInternals.h +644 -0
- package/vendor/libxml/include/libxml/pattern.h +100 -0
- package/vendor/libxml/include/libxml/relaxng.h +217 -0
- package/vendor/libxml/include/libxml/schemasInternals.h +958 -0
- package/vendor/libxml/include/libxml/schematron.h +142 -0
- package/vendor/libxml/include/libxml/threads.h +89 -0
- package/vendor/libxml/include/libxml/tree.h +1311 -0
- package/vendor/libxml/include/libxml/uri.h +94 -0
- package/vendor/libxml/include/libxml/valid.h +458 -0
- package/vendor/libxml/include/libxml/xinclude.h +129 -0
- package/vendor/libxml/include/libxml/xlink.h +189 -0
- package/vendor/libxml/include/libxml/xmlIO.h +368 -0
- package/vendor/libxml/include/libxml/xmlautomata.h +146 -0
- package/vendor/libxml/include/libxml/xmlerror.h +945 -0
- package/vendor/libxml/include/libxml/xmlexports.h +77 -0
- package/vendor/libxml/include/libxml/xmlmemory.h +224 -0
- package/vendor/libxml/include/libxml/xmlmodule.h +57 -0
- package/vendor/libxml/include/libxml/xmlreader.h +428 -0
- package/vendor/libxml/include/libxml/xmlregexp.h +222 -0
- package/vendor/libxml/include/libxml/xmlsave.h +88 -0
- package/vendor/libxml/include/libxml/xmlschemas.h +246 -0
- package/vendor/libxml/include/libxml/xmlschemastypes.h +151 -0
- package/vendor/libxml/include/libxml/xmlstring.h +140 -0
- package/vendor/libxml/include/libxml/xmlunicode.h +202 -0
- package/vendor/libxml/include/libxml/xmlversion.h +484 -0
- package/vendor/libxml/include/libxml/xmlwin32version.h +239 -0
- package/vendor/libxml/include/libxml/xmlwriter.h +488 -0
- package/vendor/libxml/include/libxml/xpath.h +564 -0
- package/vendor/libxml/include/libxml/xpathInternals.h +632 -0
- package/vendor/libxml/include/libxml/xpointer.h +114 -0
- package/vendor/libxml/include/win32config.h +122 -0
- package/vendor/libxml/include/wsockcompat.h +54 -0
- package/vendor/libxml/legacy.c +1343 -0
- package/vendor/libxml/libxml.h +134 -0
- package/vendor/libxml/list.c +779 -0
- package/vendor/libxml/nanoftp.c +2118 -0
- package/vendor/libxml/nanohttp.c +1899 -0
- package/vendor/libxml/parser.c +15553 -0
- package/vendor/libxml/parserInternals.c +2164 -0
- package/vendor/libxml/pattern.c +2621 -0
- package/vendor/libxml/relaxng.c +11101 -0
- package/vendor/libxml/rngparser.c +1595 -0
- package/vendor/libxml/runsuite.c +1157 -0
- package/vendor/libxml/save.h +36 -0
- package/vendor/libxml/schematron.c +1787 -0
- package/vendor/libxml/threads.c +1049 -0
- package/vendor/libxml/timsort.h +601 -0
- package/vendor/libxml/tree.c +10183 -0
- package/vendor/libxml/trio.c +6895 -0
- package/vendor/libxml/trio.h +230 -0
- package/vendor/libxml/triodef.h +228 -0
- package/vendor/libxml/trionan.c +914 -0
- package/vendor/libxml/trionan.h +84 -0
- package/vendor/libxml/triop.h +150 -0
- package/vendor/libxml/triostr.c +2112 -0
- package/vendor/libxml/triostr.h +144 -0
- package/vendor/libxml/uri.c +2561 -0
- package/vendor/libxml/valid.c +7138 -0
- package/vendor/libxml/xinclude.c +2657 -0
- package/vendor/libxml/xlink.c +183 -0
- package/vendor/libxml/xmlIO.c +4135 -0
- package/vendor/libxml/xmlcatalog.c +624 -0
- package/vendor/libxml/xmllint.c +3796 -0
- package/vendor/libxml/xmlmemory.c +1163 -0
- package/vendor/libxml/xmlmodule.c +468 -0
- package/vendor/libxml/xmlreader.c +6033 -0
- package/vendor/libxml/xmlregexp.c +8271 -0
- package/vendor/libxml/xmlsave.c +2735 -0
- package/vendor/libxml/xmlschemas.c +29173 -0
- package/vendor/libxml/xmlschemastypes.c +6276 -0
- package/vendor/libxml/xmlstring.c +1050 -0
- package/vendor/libxml/xmlunicode.c +3179 -0
- package/vendor/libxml/xmlwriter.c +4738 -0
- package/vendor/libxml/xpath.c +14734 -0
- package/vendor/libxml/xpointer.c +2969 -0
- package/vendor/libxml/xzlib.c +815 -0
- package/vendor/libxml/xzlib.h +19 -0
@@ -0,0 +1,725 @@
|
|
1
|
+
# Makefile.in generated by automake 1.15.1 from Makefile.am.
|
2
|
+
# @configure_input@
|
3
|
+
|
4
|
+
# Copyright (C) 1994-2017 Free Software Foundation, Inc.
|
5
|
+
|
6
|
+
# This Makefile.in is free software; the Free Software Foundation
|
7
|
+
# gives unlimited permission to copy and/or distribute it,
|
8
|
+
# with or without modifications, as long as this notice is preserved.
|
9
|
+
|
10
|
+
# This program is distributed in the hope that it will be useful,
|
11
|
+
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
|
12
|
+
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
13
|
+
# PARTICULAR PURPOSE.
|
14
|
+
|
15
|
+
@SET_MAKE@
|
16
|
+
|
17
|
+
VPATH = @srcdir@
|
18
|
+
am__is_gnu_make = { \
|
19
|
+
if test -z '$(MAKELEVEL)'; then \
|
20
|
+
false; \
|
21
|
+
elif test -n '$(MAKE_HOST)'; then \
|
22
|
+
true; \
|
23
|
+
elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \
|
24
|
+
true; \
|
25
|
+
else \
|
26
|
+
false; \
|
27
|
+
fi; \
|
28
|
+
}
|
29
|
+
am__make_running_with_option = \
|
30
|
+
case $${target_option-} in \
|
31
|
+
?) ;; \
|
32
|
+
*) echo "am__make_running_with_option: internal error: invalid" \
|
33
|
+
"target option '$${target_option-}' specified" >&2; \
|
34
|
+
exit 1;; \
|
35
|
+
esac; \
|
36
|
+
has_opt=no; \
|
37
|
+
sane_makeflags=$$MAKEFLAGS; \
|
38
|
+
if $(am__is_gnu_make); then \
|
39
|
+
sane_makeflags=$$MFLAGS; \
|
40
|
+
else \
|
41
|
+
case $$MAKEFLAGS in \
|
42
|
+
*\\[\ \ ]*) \
|
43
|
+
bs=\\; \
|
44
|
+
sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
|
45
|
+
| sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \
|
46
|
+
esac; \
|
47
|
+
fi; \
|
48
|
+
skip_next=no; \
|
49
|
+
strip_trailopt () \
|
50
|
+
{ \
|
51
|
+
flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
|
52
|
+
}; \
|
53
|
+
for flg in $$sane_makeflags; do \
|
54
|
+
test $$skip_next = yes && { skip_next=no; continue; }; \
|
55
|
+
case $$flg in \
|
56
|
+
*=*|--*) continue;; \
|
57
|
+
-*I) strip_trailopt 'I'; skip_next=yes;; \
|
58
|
+
-*I?*) strip_trailopt 'I';; \
|
59
|
+
-*O) strip_trailopt 'O'; skip_next=yes;; \
|
60
|
+
-*O?*) strip_trailopt 'O';; \
|
61
|
+
-*l) strip_trailopt 'l'; skip_next=yes;; \
|
62
|
+
-*l?*) strip_trailopt 'l';; \
|
63
|
+
-[dEDm]) skip_next=yes;; \
|
64
|
+
-[JT]) skip_next=yes;; \
|
65
|
+
esac; \
|
66
|
+
case $$flg in \
|
67
|
+
*$$target_option*) has_opt=yes; break;; \
|
68
|
+
esac; \
|
69
|
+
done; \
|
70
|
+
test $$has_opt = yes
|
71
|
+
am__make_dryrun = (target_option=n; $(am__make_running_with_option))
|
72
|
+
am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
|
73
|
+
pkgdatadir = $(datadir)/@PACKAGE@
|
74
|
+
pkgincludedir = $(includedir)/@PACKAGE@
|
75
|
+
pkglibdir = $(libdir)/@PACKAGE@
|
76
|
+
pkglibexecdir = $(libexecdir)/@PACKAGE@
|
77
|
+
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
|
78
|
+
install_sh_DATA = $(install_sh) -c -m 644
|
79
|
+
install_sh_PROGRAM = $(install_sh) -c
|
80
|
+
install_sh_SCRIPT = $(install_sh) -c
|
81
|
+
INSTALL_HEADER = $(INSTALL_DATA)
|
82
|
+
transform = $(program_transform_name)
|
83
|
+
NORMAL_INSTALL = :
|
84
|
+
PRE_INSTALL = :
|
85
|
+
POST_INSTALL = :
|
86
|
+
NORMAL_UNINSTALL = :
|
87
|
+
PRE_UNINSTALL = :
|
88
|
+
POST_UNINSTALL = :
|
89
|
+
build_triplet = @build@
|
90
|
+
host_triplet = @host@
|
91
|
+
subdir = include/libxml
|
92
|
+
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
93
|
+
am__aclocal_m4_deps = $(top_srcdir)/m4/libtool.m4 \
|
94
|
+
$(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
|
95
|
+
$(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
|
96
|
+
$(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac
|
97
|
+
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
|
98
|
+
$(ACLOCAL_M4)
|
99
|
+
DIST_COMMON = $(srcdir)/Makefile.am $(xmlinc_HEADERS) \
|
100
|
+
$(am__DIST_COMMON)
|
101
|
+
mkinstalldirs = $(install_sh) -d
|
102
|
+
CONFIG_HEADER = $(top_builddir)/config.h
|
103
|
+
CONFIG_CLEAN_FILES = xmlversion.h
|
104
|
+
CONFIG_CLEAN_VPATH_FILES =
|
105
|
+
AM_V_P = $(am__v_P_@AM_V@)
|
106
|
+
am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
|
107
|
+
am__v_P_0 = false
|
108
|
+
am__v_P_1 = :
|
109
|
+
AM_V_GEN = $(am__v_GEN_@AM_V@)
|
110
|
+
am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
|
111
|
+
am__v_GEN_0 = @echo " GEN " $@;
|
112
|
+
am__v_GEN_1 =
|
113
|
+
AM_V_at = $(am__v_at_@AM_V@)
|
114
|
+
am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
|
115
|
+
am__v_at_0 = @
|
116
|
+
am__v_at_1 =
|
117
|
+
SOURCES =
|
118
|
+
DIST_SOURCES =
|
119
|
+
am__can_run_installinfo = \
|
120
|
+
case $$AM_UPDATE_INFO_DIR in \
|
121
|
+
n|no|NO) false;; \
|
122
|
+
*) (install-info --version) >/dev/null 2>&1;; \
|
123
|
+
esac
|
124
|
+
am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
|
125
|
+
am__vpath_adj = case $$p in \
|
126
|
+
$(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
|
127
|
+
*) f=$$p;; \
|
128
|
+
esac;
|
129
|
+
am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
|
130
|
+
am__install_max = 40
|
131
|
+
am__nobase_strip_setup = \
|
132
|
+
srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
|
133
|
+
am__nobase_strip = \
|
134
|
+
for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
|
135
|
+
am__nobase_list = $(am__nobase_strip_setup); \
|
136
|
+
for p in $$list; do echo "$$p $$p"; done | \
|
137
|
+
sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
|
138
|
+
$(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
|
139
|
+
if (++n[$$2] == $(am__install_max)) \
|
140
|
+
{ print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
|
141
|
+
END { for (dir in files) print dir, files[dir] }'
|
142
|
+
am__base_list = \
|
143
|
+
sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
|
144
|
+
sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
|
145
|
+
am__uninstall_files_from_dir = { \
|
146
|
+
test -z "$$files" \
|
147
|
+
|| { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
|
148
|
+
|| { echo " ( cd '$$dir' && rm -f" $$files ")"; \
|
149
|
+
$(am__cd) "$$dir" && rm -f $$files; }; \
|
150
|
+
}
|
151
|
+
am__installdirs = "$(DESTDIR)$(xmlincdir)"
|
152
|
+
HEADERS = $(xmlinc_HEADERS)
|
153
|
+
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
|
154
|
+
# Read a list of newline-separated strings from the standard input,
|
155
|
+
# and print each of them once, without duplicates. Input order is
|
156
|
+
# *not* preserved.
|
157
|
+
am__uniquify_input = $(AWK) '\
|
158
|
+
BEGIN { nonempty = 0; } \
|
159
|
+
{ items[$$0] = 1; nonempty = 1; } \
|
160
|
+
END { if (nonempty) { for (i in items) print i; }; } \
|
161
|
+
'
|
162
|
+
# Make sure the list of sources is unique. This is necessary because,
|
163
|
+
# e.g., the same source file might be shared among _SOURCES variables
|
164
|
+
# for different programs/libraries.
|
165
|
+
am__define_uniq_tagged_files = \
|
166
|
+
list='$(am__tagged_files)'; \
|
167
|
+
unique=`for i in $$list; do \
|
168
|
+
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
169
|
+
done | $(am__uniquify_input)`
|
170
|
+
ETAGS = etags
|
171
|
+
CTAGS = ctags
|
172
|
+
am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/xmlversion.h.in
|
173
|
+
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
174
|
+
ACLOCAL = @ACLOCAL@
|
175
|
+
AMTAR = @AMTAR@
|
176
|
+
AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
|
177
|
+
AR = @AR@
|
178
|
+
AUTOCONF = @AUTOCONF@
|
179
|
+
AUTOHEADER = @AUTOHEADER@
|
180
|
+
AUTOMAKE = @AUTOMAKE@
|
181
|
+
AWK = @AWK@
|
182
|
+
BASE_THREAD_LIBS = @BASE_THREAD_LIBS@
|
183
|
+
C14N_OBJ = @C14N_OBJ@
|
184
|
+
CATALOG_OBJ = @CATALOG_OBJ@
|
185
|
+
CC = @CC@
|
186
|
+
CCDEPMODE = @CCDEPMODE@
|
187
|
+
CFLAGS = @CFLAGS@
|
188
|
+
CPP = @CPP@
|
189
|
+
CPPFLAGS = @CPPFLAGS@
|
190
|
+
CYGPATH_W = @CYGPATH_W@
|
191
|
+
CYGWIN_EXTRA_LDFLAGS = @CYGWIN_EXTRA_LDFLAGS@
|
192
|
+
CYGWIN_EXTRA_PYTHON_LIBADD = @CYGWIN_EXTRA_PYTHON_LIBADD@
|
193
|
+
DEBUG_OBJ = @DEBUG_OBJ@
|
194
|
+
DEFS = @DEFS@
|
195
|
+
DEPDIR = @DEPDIR@
|
196
|
+
DLLTOOL = @DLLTOOL@
|
197
|
+
DOCB_OBJ = @DOCB_OBJ@
|
198
|
+
DSYMUTIL = @DSYMUTIL@
|
199
|
+
DUMPBIN = @DUMPBIN@
|
200
|
+
ECHO_C = @ECHO_C@
|
201
|
+
ECHO_N = @ECHO_N@
|
202
|
+
ECHO_T = @ECHO_T@
|
203
|
+
EGREP = @EGREP@
|
204
|
+
EXEEXT = @EXEEXT@
|
205
|
+
EXTRA_CFLAGS = @EXTRA_CFLAGS@
|
206
|
+
FGREP = @FGREP@
|
207
|
+
FTP_OBJ = @FTP_OBJ@
|
208
|
+
GREP = @GREP@
|
209
|
+
HAVE_ISINF = @HAVE_ISINF@
|
210
|
+
HAVE_ISNAN = @HAVE_ISNAN@
|
211
|
+
HTML_DIR = @HTML_DIR@
|
212
|
+
HTML_OBJ = @HTML_OBJ@
|
213
|
+
HTTP_OBJ = @HTTP_OBJ@
|
214
|
+
ICONV_LIBS = @ICONV_LIBS@
|
215
|
+
ICU_CFLAGS = @ICU_CFLAGS@
|
216
|
+
ICU_LIBS = @ICU_LIBS@
|
217
|
+
INSTALL = @INSTALL@
|
218
|
+
INSTALL_DATA = @INSTALL_DATA@
|
219
|
+
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
220
|
+
INSTALL_SCRIPT = @INSTALL_SCRIPT@
|
221
|
+
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
|
222
|
+
LD = @LD@
|
223
|
+
LDFLAGS = @LDFLAGS@
|
224
|
+
LIBOBJS = @LIBOBJS@
|
225
|
+
LIBS = @LIBS@
|
226
|
+
LIBTOOL = @LIBTOOL@
|
227
|
+
LIBXML_MAJOR_VERSION = @LIBXML_MAJOR_VERSION@
|
228
|
+
LIBXML_MICRO_VERSION = @LIBXML_MICRO_VERSION@
|
229
|
+
LIBXML_MINOR_VERSION = @LIBXML_MINOR_VERSION@
|
230
|
+
LIBXML_VERSION = @LIBXML_VERSION@
|
231
|
+
LIBXML_VERSION_EXTRA = @LIBXML_VERSION_EXTRA@
|
232
|
+
LIBXML_VERSION_INFO = @LIBXML_VERSION_INFO@
|
233
|
+
LIBXML_VERSION_NUMBER = @LIBXML_VERSION_NUMBER@
|
234
|
+
LIPO = @LIPO@
|
235
|
+
LN_S = @LN_S@
|
236
|
+
LTLIBOBJS = @LTLIBOBJS@
|
237
|
+
LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@
|
238
|
+
LZMA_CFLAGS = @LZMA_CFLAGS@
|
239
|
+
LZMA_LIBS = @LZMA_LIBS@
|
240
|
+
MAINT = @MAINT@
|
241
|
+
MAKEINFO = @MAKEINFO@
|
242
|
+
MANIFEST_TOOL = @MANIFEST_TOOL@
|
243
|
+
MKDIR_P = @MKDIR_P@
|
244
|
+
MODULE_EXTENSION = @MODULE_EXTENSION@
|
245
|
+
MODULE_PLATFORM_LIBS = @MODULE_PLATFORM_LIBS@
|
246
|
+
MV = @MV@
|
247
|
+
M_LIBS = @M_LIBS@
|
248
|
+
NM = @NM@
|
249
|
+
NMEDIT = @NMEDIT@
|
250
|
+
OBJDUMP = @OBJDUMP@
|
251
|
+
OBJEXT = @OBJEXT@
|
252
|
+
OTOOL = @OTOOL@
|
253
|
+
OTOOL64 = @OTOOL64@
|
254
|
+
PACKAGE = @PACKAGE@
|
255
|
+
PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
|
256
|
+
PACKAGE_NAME = @PACKAGE_NAME@
|
257
|
+
PACKAGE_STRING = @PACKAGE_STRING@
|
258
|
+
PACKAGE_TARNAME = @PACKAGE_TARNAME@
|
259
|
+
PACKAGE_URL = @PACKAGE_URL@
|
260
|
+
PACKAGE_VERSION = @PACKAGE_VERSION@
|
261
|
+
PATH_SEPARATOR = @PATH_SEPARATOR@
|
262
|
+
PERL = @PERL@
|
263
|
+
PKG_CONFIG = @PKG_CONFIG@
|
264
|
+
PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@
|
265
|
+
PKG_CONFIG_PATH = @PKG_CONFIG_PATH@
|
266
|
+
PYTHON = @PYTHON@
|
267
|
+
PYTHON_INCLUDES = @PYTHON_INCLUDES@
|
268
|
+
PYTHON_LIBS = @PYTHON_LIBS@
|
269
|
+
PYTHON_SITE_PACKAGES = @PYTHON_SITE_PACKAGES@
|
270
|
+
PYTHON_SUBDIR = @PYTHON_SUBDIR@
|
271
|
+
PYTHON_TESTS = @PYTHON_TESTS@
|
272
|
+
PYTHON_VERSION = @PYTHON_VERSION@
|
273
|
+
RANLIB = @RANLIB@
|
274
|
+
RDL_LIBS = @RDL_LIBS@
|
275
|
+
READER_TEST = @READER_TEST@
|
276
|
+
RELDATE = @RELDATE@
|
277
|
+
SED = @SED@
|
278
|
+
SET_MAKE = @SET_MAKE@
|
279
|
+
SHELL = @SHELL@
|
280
|
+
STATIC_BINARIES = @STATIC_BINARIES@
|
281
|
+
STRIP = @STRIP@
|
282
|
+
TAR = @TAR@
|
283
|
+
TEST_C14N = @TEST_C14N@
|
284
|
+
TEST_CATALOG = @TEST_CATALOG@
|
285
|
+
TEST_DEBUG = @TEST_DEBUG@
|
286
|
+
TEST_HTML = @TEST_HTML@
|
287
|
+
TEST_MODULES = @TEST_MODULES@
|
288
|
+
TEST_PATTERN = @TEST_PATTERN@
|
289
|
+
TEST_PHTML = @TEST_PHTML@
|
290
|
+
TEST_PUSH = @TEST_PUSH@
|
291
|
+
TEST_REGEXPS = @TEST_REGEXPS@
|
292
|
+
TEST_SAX = @TEST_SAX@
|
293
|
+
TEST_SCHEMAS = @TEST_SCHEMAS@
|
294
|
+
TEST_SCHEMATRON = @TEST_SCHEMATRON@
|
295
|
+
TEST_THREADS = @TEST_THREADS@
|
296
|
+
TEST_VALID = @TEST_VALID@
|
297
|
+
TEST_VTIME = @TEST_VTIME@
|
298
|
+
TEST_XINCLUDE = @TEST_XINCLUDE@
|
299
|
+
TEST_XPATH = @TEST_XPATH@
|
300
|
+
TEST_XPTR = @TEST_XPTR@
|
301
|
+
THREAD_CFLAGS = @THREAD_CFLAGS@
|
302
|
+
THREAD_LIBS = @THREAD_LIBS@
|
303
|
+
VERSION = @VERSION@
|
304
|
+
VERSION_SCRIPT_FLAGS = @VERSION_SCRIPT_FLAGS@
|
305
|
+
WGET = @WGET@
|
306
|
+
WIN32_EXTRA_LDFLAGS = @WIN32_EXTRA_LDFLAGS@
|
307
|
+
WIN32_EXTRA_LIBADD = @WIN32_EXTRA_LIBADD@
|
308
|
+
WIN32_EXTRA_PYTHON_LIBADD = @WIN32_EXTRA_PYTHON_LIBADD@
|
309
|
+
WITH_C14N = @WITH_C14N@
|
310
|
+
WITH_CATALOG = @WITH_CATALOG@
|
311
|
+
WITH_DEBUG = @WITH_DEBUG@
|
312
|
+
WITH_DOCB = @WITH_DOCB@
|
313
|
+
WITH_FTP = @WITH_FTP@
|
314
|
+
WITH_HTML = @WITH_HTML@
|
315
|
+
WITH_HTTP = @WITH_HTTP@
|
316
|
+
WITH_ICONV = @WITH_ICONV@
|
317
|
+
WITH_ICU = @WITH_ICU@
|
318
|
+
WITH_ISO8859X = @WITH_ISO8859X@
|
319
|
+
WITH_LEGACY = @WITH_LEGACY@
|
320
|
+
WITH_LZMA = @WITH_LZMA@
|
321
|
+
WITH_MEM_DEBUG = @WITH_MEM_DEBUG@
|
322
|
+
WITH_MODULES = @WITH_MODULES@
|
323
|
+
WITH_OUTPUT = @WITH_OUTPUT@
|
324
|
+
WITH_PATTERN = @WITH_PATTERN@
|
325
|
+
WITH_PUSH = @WITH_PUSH@
|
326
|
+
WITH_READER = @WITH_READER@
|
327
|
+
WITH_REGEXPS = @WITH_REGEXPS@
|
328
|
+
WITH_RUN_DEBUG = @WITH_RUN_DEBUG@
|
329
|
+
WITH_SAX1 = @WITH_SAX1@
|
330
|
+
WITH_SCHEMAS = @WITH_SCHEMAS@
|
331
|
+
WITH_SCHEMATRON = @WITH_SCHEMATRON@
|
332
|
+
WITH_THREADS = @WITH_THREADS@
|
333
|
+
WITH_THREAD_ALLOC = @WITH_THREAD_ALLOC@
|
334
|
+
WITH_TREE = @WITH_TREE@
|
335
|
+
WITH_TRIO = @WITH_TRIO@
|
336
|
+
WITH_VALID = @WITH_VALID@
|
337
|
+
WITH_WRITER = @WITH_WRITER@
|
338
|
+
WITH_XINCLUDE = @WITH_XINCLUDE@
|
339
|
+
WITH_XPATH = @WITH_XPATH@
|
340
|
+
WITH_XPTR = @WITH_XPTR@
|
341
|
+
WITH_ZLIB = @WITH_ZLIB@
|
342
|
+
XINCLUDE_OBJ = @XINCLUDE_OBJ@
|
343
|
+
XMLLINT = @XMLLINT@
|
344
|
+
XML_CFLAGS = @XML_CFLAGS@
|
345
|
+
XML_INCLUDEDIR = @XML_INCLUDEDIR@
|
346
|
+
XML_LIBDIR = @XML_LIBDIR@
|
347
|
+
XML_LIBS = @XML_LIBS@
|
348
|
+
XML_LIBTOOLLIBS = @XML_LIBTOOLLIBS@
|
349
|
+
XPATH_OBJ = @XPATH_OBJ@
|
350
|
+
XPTR_OBJ = @XPTR_OBJ@
|
351
|
+
XSLTPROC = @XSLTPROC@
|
352
|
+
Z_CFLAGS = @Z_CFLAGS@
|
353
|
+
Z_LIBS = @Z_LIBS@
|
354
|
+
abs_builddir = @abs_builddir@
|
355
|
+
abs_srcdir = @abs_srcdir@
|
356
|
+
abs_top_builddir = @abs_top_builddir@
|
357
|
+
abs_top_srcdir = @abs_top_srcdir@
|
358
|
+
ac_ct_AR = @ac_ct_AR@
|
359
|
+
ac_ct_CC = @ac_ct_CC@
|
360
|
+
ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
|
361
|
+
am__include = @am__include@
|
362
|
+
am__leading_dot = @am__leading_dot@
|
363
|
+
am__quote = @am__quote@
|
364
|
+
am__tar = @am__tar@
|
365
|
+
am__untar = @am__untar@
|
366
|
+
bindir = @bindir@
|
367
|
+
build = @build@
|
368
|
+
build_alias = @build_alias@
|
369
|
+
build_cpu = @build_cpu@
|
370
|
+
build_os = @build_os@
|
371
|
+
build_vendor = @build_vendor@
|
372
|
+
builddir = @builddir@
|
373
|
+
datadir = @datadir@
|
374
|
+
datarootdir = @datarootdir@
|
375
|
+
docdir = @docdir@
|
376
|
+
dvidir = @dvidir@
|
377
|
+
exec_prefix = @exec_prefix@
|
378
|
+
host = @host@
|
379
|
+
host_alias = @host_alias@
|
380
|
+
host_cpu = @host_cpu@
|
381
|
+
host_os = @host_os@
|
382
|
+
host_vendor = @host_vendor@
|
383
|
+
htmldir = @htmldir@
|
384
|
+
includedir = @includedir@
|
385
|
+
infodir = @infodir@
|
386
|
+
install_sh = @install_sh@
|
387
|
+
libdir = @libdir@
|
388
|
+
libexecdir = @libexecdir@
|
389
|
+
localedir = @localedir@
|
390
|
+
localstatedir = @localstatedir@
|
391
|
+
mandir = @mandir@
|
392
|
+
mkdir_p = @mkdir_p@
|
393
|
+
oldincludedir = @oldincludedir@
|
394
|
+
pdfdir = @pdfdir@
|
395
|
+
prefix = @prefix@
|
396
|
+
program_transform_name = @program_transform_name@
|
397
|
+
psdir = @psdir@
|
398
|
+
pythondir = @pythondir@
|
399
|
+
sbindir = @sbindir@
|
400
|
+
sharedstatedir = @sharedstatedir@
|
401
|
+
srcdir = @srcdir@
|
402
|
+
sysconfdir = @sysconfdir@
|
403
|
+
target_alias = @target_alias@
|
404
|
+
top_build_prefix = @top_build_prefix@
|
405
|
+
top_builddir = @top_builddir@
|
406
|
+
top_srcdir = @top_srcdir@
|
407
|
+
xmlincdir = $(includedir)/libxml2/libxml
|
408
|
+
xmlinc_HEADERS = \
|
409
|
+
SAX.h \
|
410
|
+
entities.h \
|
411
|
+
encoding.h \
|
412
|
+
parser.h \
|
413
|
+
parserInternals.h \
|
414
|
+
xmlerror.h \
|
415
|
+
HTMLparser.h \
|
416
|
+
HTMLtree.h \
|
417
|
+
debugXML.h \
|
418
|
+
tree.h \
|
419
|
+
list.h \
|
420
|
+
hash.h \
|
421
|
+
xpath.h \
|
422
|
+
xpathInternals.h \
|
423
|
+
xpointer.h \
|
424
|
+
xinclude.h \
|
425
|
+
xmlIO.h \
|
426
|
+
xmlmemory.h \
|
427
|
+
nanohttp.h \
|
428
|
+
nanoftp.h \
|
429
|
+
uri.h \
|
430
|
+
valid.h \
|
431
|
+
xlink.h \
|
432
|
+
xmlversion.h \
|
433
|
+
DOCBparser.h \
|
434
|
+
catalog.h \
|
435
|
+
threads.h \
|
436
|
+
globals.h \
|
437
|
+
c14n.h \
|
438
|
+
xmlautomata.h \
|
439
|
+
xmlregexp.h \
|
440
|
+
xmlmodule.h \
|
441
|
+
xmlschemas.h \
|
442
|
+
schemasInternals.h \
|
443
|
+
xmlschemastypes.h \
|
444
|
+
xmlstring.h \
|
445
|
+
xmlunicode.h \
|
446
|
+
xmlreader.h \
|
447
|
+
relaxng.h \
|
448
|
+
dict.h \
|
449
|
+
SAX2.h \
|
450
|
+
xmlexports.h \
|
451
|
+
xmlwriter.h \
|
452
|
+
chvalid.h \
|
453
|
+
pattern.h \
|
454
|
+
xmlsave.h \
|
455
|
+
schematron.h
|
456
|
+
|
457
|
+
EXTRA_DIST = xmlversion.h.in
|
458
|
+
all: all-am
|
459
|
+
|
460
|
+
.SUFFIXES:
|
461
|
+
$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps)
|
462
|
+
@for dep in $?; do \
|
463
|
+
case '$(am__configure_deps)' in \
|
464
|
+
*$$dep*) \
|
465
|
+
( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
|
466
|
+
&& { if test -f $@; then exit 0; else break; fi; }; \
|
467
|
+
exit 1;; \
|
468
|
+
esac; \
|
469
|
+
done; \
|
470
|
+
echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu include/libxml/Makefile'; \
|
471
|
+
$(am__cd) $(top_srcdir) && \
|
472
|
+
$(AUTOMAKE) --gnu include/libxml/Makefile
|
473
|
+
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
474
|
+
@case '$?' in \
|
475
|
+
*config.status*) \
|
476
|
+
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
|
477
|
+
*) \
|
478
|
+
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
|
479
|
+
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
|
480
|
+
esac;
|
481
|
+
|
482
|
+
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
|
483
|
+
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
484
|
+
|
485
|
+
$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
|
486
|
+
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
487
|
+
$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
|
488
|
+
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
489
|
+
$(am__aclocal_m4_deps):
|
490
|
+
xmlversion.h: $(top_builddir)/config.status $(srcdir)/xmlversion.h.in
|
491
|
+
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@
|
492
|
+
|
493
|
+
mostlyclean-libtool:
|
494
|
+
-rm -f *.lo
|
495
|
+
|
496
|
+
clean-libtool:
|
497
|
+
-rm -rf .libs _libs
|
498
|
+
install-xmlincHEADERS: $(xmlinc_HEADERS)
|
499
|
+
@$(NORMAL_INSTALL)
|
500
|
+
@list='$(xmlinc_HEADERS)'; test -n "$(xmlincdir)" || list=; \
|
501
|
+
if test -n "$$list"; then \
|
502
|
+
echo " $(MKDIR_P) '$(DESTDIR)$(xmlincdir)'"; \
|
503
|
+
$(MKDIR_P) "$(DESTDIR)$(xmlincdir)" || exit 1; \
|
504
|
+
fi; \
|
505
|
+
for p in $$list; do \
|
506
|
+
if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
|
507
|
+
echo "$$d$$p"; \
|
508
|
+
done | $(am__base_list) | \
|
509
|
+
while read files; do \
|
510
|
+
echo " $(INSTALL_HEADER) $$files '$(DESTDIR)$(xmlincdir)'"; \
|
511
|
+
$(INSTALL_HEADER) $$files "$(DESTDIR)$(xmlincdir)" || exit $$?; \
|
512
|
+
done
|
513
|
+
|
514
|
+
uninstall-xmlincHEADERS:
|
515
|
+
@$(NORMAL_UNINSTALL)
|
516
|
+
@list='$(xmlinc_HEADERS)'; test -n "$(xmlincdir)" || list=; \
|
517
|
+
files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
|
518
|
+
dir='$(DESTDIR)$(xmlincdir)'; $(am__uninstall_files_from_dir)
|
519
|
+
|
520
|
+
ID: $(am__tagged_files)
|
521
|
+
$(am__define_uniq_tagged_files); mkid -fID $$unique
|
522
|
+
tags: tags-am
|
523
|
+
TAGS: tags
|
524
|
+
|
525
|
+
tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
|
526
|
+
set x; \
|
527
|
+
here=`pwd`; \
|
528
|
+
$(am__define_uniq_tagged_files); \
|
529
|
+
shift; \
|
530
|
+
if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
|
531
|
+
test -n "$$unique" || unique=$$empty_fix; \
|
532
|
+
if test $$# -gt 0; then \
|
533
|
+
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
|
534
|
+
"$$@" $$unique; \
|
535
|
+
else \
|
536
|
+
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
|
537
|
+
$$unique; \
|
538
|
+
fi; \
|
539
|
+
fi
|
540
|
+
ctags: ctags-am
|
541
|
+
|
542
|
+
CTAGS: ctags
|
543
|
+
ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
|
544
|
+
$(am__define_uniq_tagged_files); \
|
545
|
+
test -z "$(CTAGS_ARGS)$$unique" \
|
546
|
+
|| $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
|
547
|
+
$$unique
|
548
|
+
|
549
|
+
GTAGS:
|
550
|
+
here=`$(am__cd) $(top_builddir) && pwd` \
|
551
|
+
&& $(am__cd) $(top_srcdir) \
|
552
|
+
&& gtags -i $(GTAGS_ARGS) "$$here"
|
553
|
+
cscopelist: cscopelist-am
|
554
|
+
|
555
|
+
cscopelist-am: $(am__tagged_files)
|
556
|
+
list='$(am__tagged_files)'; \
|
557
|
+
case "$(srcdir)" in \
|
558
|
+
[\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
|
559
|
+
*) sdir=$(subdir)/$(srcdir) ;; \
|
560
|
+
esac; \
|
561
|
+
for i in $$list; do \
|
562
|
+
if test -f "$$i"; then \
|
563
|
+
echo "$(subdir)/$$i"; \
|
564
|
+
else \
|
565
|
+
echo "$$sdir/$$i"; \
|
566
|
+
fi; \
|
567
|
+
done >> $(top_builddir)/cscope.files
|
568
|
+
|
569
|
+
distclean-tags:
|
570
|
+
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
|
571
|
+
|
572
|
+
distdir: $(DISTFILES)
|
573
|
+
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
574
|
+
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
575
|
+
list='$(DISTFILES)'; \
|
576
|
+
dist_files=`for file in $$list; do echo $$file; done | \
|
577
|
+
sed -e "s|^$$srcdirstrip/||;t" \
|
578
|
+
-e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
|
579
|
+
case $$dist_files in \
|
580
|
+
*/*) $(MKDIR_P) `echo "$$dist_files" | \
|
581
|
+
sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
|
582
|
+
sort -u` ;; \
|
583
|
+
esac; \
|
584
|
+
for file in $$dist_files; do \
|
585
|
+
if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
|
586
|
+
if test -d $$d/$$file; then \
|
587
|
+
dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
|
588
|
+
if test -d "$(distdir)/$$file"; then \
|
589
|
+
find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
|
590
|
+
fi; \
|
591
|
+
if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
|
592
|
+
cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
|
593
|
+
find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
|
594
|
+
fi; \
|
595
|
+
cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
|
596
|
+
else \
|
597
|
+
test -f "$(distdir)/$$file" \
|
598
|
+
|| cp -p $$d/$$file "$(distdir)/$$file" \
|
599
|
+
|| exit 1; \
|
600
|
+
fi; \
|
601
|
+
done
|
602
|
+
check-am: all-am
|
603
|
+
check: check-am
|
604
|
+
all-am: Makefile $(HEADERS)
|
605
|
+
installdirs:
|
606
|
+
for dir in "$(DESTDIR)$(xmlincdir)"; do \
|
607
|
+
test -z "$$dir" || $(MKDIR_P) "$$dir"; \
|
608
|
+
done
|
609
|
+
install: install-am
|
610
|
+
install-exec: install-exec-am
|
611
|
+
install-data: install-data-am
|
612
|
+
uninstall: uninstall-am
|
613
|
+
|
614
|
+
install-am: all-am
|
615
|
+
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
|
616
|
+
|
617
|
+
installcheck: installcheck-am
|
618
|
+
install-strip:
|
619
|
+
if test -z '$(STRIP)'; then \
|
620
|
+
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
|
621
|
+
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
|
622
|
+
install; \
|
623
|
+
else \
|
624
|
+
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
|
625
|
+
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
|
626
|
+
"INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
|
627
|
+
fi
|
628
|
+
mostlyclean-generic:
|
629
|
+
|
630
|
+
clean-generic:
|
631
|
+
|
632
|
+
distclean-generic:
|
633
|
+
-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
|
634
|
+
-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
|
635
|
+
|
636
|
+
maintainer-clean-generic:
|
637
|
+
@echo "This command is intended for maintainers to use"
|
638
|
+
@echo "it deletes files that may require special tools to rebuild."
|
639
|
+
clean: clean-am
|
640
|
+
|
641
|
+
clean-am: clean-generic clean-libtool mostlyclean-am
|
642
|
+
|
643
|
+
distclean: distclean-am
|
644
|
+
-rm -f Makefile
|
645
|
+
distclean-am: clean-am distclean-generic distclean-tags
|
646
|
+
|
647
|
+
dvi: dvi-am
|
648
|
+
|
649
|
+
dvi-am:
|
650
|
+
|
651
|
+
html: html-am
|
652
|
+
|
653
|
+
html-am:
|
654
|
+
|
655
|
+
info: info-am
|
656
|
+
|
657
|
+
info-am:
|
658
|
+
|
659
|
+
install-data-am: install-xmlincHEADERS
|
660
|
+
|
661
|
+
install-dvi: install-dvi-am
|
662
|
+
|
663
|
+
install-dvi-am:
|
664
|
+
|
665
|
+
install-exec-am:
|
666
|
+
|
667
|
+
install-html: install-html-am
|
668
|
+
|
669
|
+
install-html-am:
|
670
|
+
|
671
|
+
install-info: install-info-am
|
672
|
+
|
673
|
+
install-info-am:
|
674
|
+
|
675
|
+
install-man:
|
676
|
+
|
677
|
+
install-pdf: install-pdf-am
|
678
|
+
|
679
|
+
install-pdf-am:
|
680
|
+
|
681
|
+
install-ps: install-ps-am
|
682
|
+
|
683
|
+
install-ps-am:
|
684
|
+
|
685
|
+
installcheck-am:
|
686
|
+
|
687
|
+
maintainer-clean: maintainer-clean-am
|
688
|
+
-rm -f Makefile
|
689
|
+
maintainer-clean-am: distclean-am maintainer-clean-generic
|
690
|
+
|
691
|
+
mostlyclean: mostlyclean-am
|
692
|
+
|
693
|
+
mostlyclean-am: mostlyclean-generic mostlyclean-libtool
|
694
|
+
|
695
|
+
pdf: pdf-am
|
696
|
+
|
697
|
+
pdf-am:
|
698
|
+
|
699
|
+
ps: ps-am
|
700
|
+
|
701
|
+
ps-am:
|
702
|
+
|
703
|
+
uninstall-am: uninstall-xmlincHEADERS
|
704
|
+
|
705
|
+
.MAKE: install-am install-strip
|
706
|
+
|
707
|
+
.PHONY: CTAGS GTAGS TAGS all all-am check check-am clean clean-generic \
|
708
|
+
clean-libtool cscopelist-am ctags ctags-am distclean \
|
709
|
+
distclean-generic distclean-libtool distclean-tags distdir dvi \
|
710
|
+
dvi-am html html-am info info-am install install-am \
|
711
|
+
install-data install-data-am install-dvi install-dvi-am \
|
712
|
+
install-exec install-exec-am install-html install-html-am \
|
713
|
+
install-info install-info-am install-man install-pdf \
|
714
|
+
install-pdf-am install-ps install-ps-am install-strip \
|
715
|
+
install-xmlincHEADERS installcheck installcheck-am installdirs \
|
716
|
+
maintainer-clean maintainer-clean-generic mostlyclean \
|
717
|
+
mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
|
718
|
+
tags tags-am uninstall uninstall-am uninstall-xmlincHEADERS
|
719
|
+
|
720
|
+
.PRECIOUS: Makefile
|
721
|
+
|
722
|
+
|
723
|
+
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
724
|
+
# Otherwise a system limit (for SysV at least) may be exceeded.
|
725
|
+
.NOEXPORT:
|