/xmlbench/trunk

To get this branch, use:
bzr branch http://darksoft.org/webbzr/xmlbench/trunk

« back to all changes in this revision

Viewing changes to parse/Makefile

  • Committer: Suren A. Chilingaryan
  • Date: 2009-10-08 03:17:59 UTC
  • Revision ID: csa@dside.dyndns.org-20091008031759-u5ys779huye7feni
LibXML Pull Parser, FAXPP Parser, Mono security benchmark, multiple fixes

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
include ../Makefile.in
2
2
 
3
 
ALLTARGETS = libxml libxml-sax libxml-push libxml-dom \
 
3
ALLTARGETS = libxml libxml-sax libxml-push libxml-pull libxml-dom \
4
4
        expat expat-arabica-sax expat-arabica-dom \
5
5
        expat-cslxml-sax expat-cslxml-dom expat-sablotron-dom \
6
6
        xerces-sax xerces-dom xml4c-sax xml4c-dom \
8
8
        rxp qt-sax qt-dom qt-pull intel-dom intel-sax asmxml parabix \
9
9
        phobos-dom phobos-sax tango-dom tango-sax tango-pull \
10
10
        mono-dom.exe mono-sax.exe \
11
 
        rapidxml vtdxml \
 
11
        rapidxml vtdxml faxpp-pull \
12
12
        sun_dom2.class sun_sax2.class oracle_dom2.class oracle_sax2.class \
13
13
        intel_dom2.class intel_sax2.class
14
14
 
42
42
 
43
43
TARGETS = 
44
44
ifeq ($(LIBXML), yes)
45
 
TARGETS += libxml libxml-push libxml-sax
 
45
TARGETS += libxml libxml-push libxml-sax libxml-pull
46
46
ifeq ($(GDOME), yes)
47
47
TARGETS +=  libxml-dom
48
48
endif
119
119
TARGETS += vtdxml
120
120
endif
121
121
 
 
122
ifeq ($(FAXPP), yes)
 
123
TARGETS += faxpp-pull
 
124
endif
 
125
 
122
126
ifeq ($(MONO), yes)
123
127
TARGETS += mono-dom.exe mono-pull.exe
124
128
endif
142
146
libxml-sax: libxml-sax.c $(HEADERS)
143
147
        $(gcc) $< -o libxml-sax $(LIBXML_INCLUDE) $(LIBXML_LIB) $(LIBS) $(FLAGS)
144
148
 
 
149
libxml-pull: libxml-pull.c $(HEADERS)
 
150
        $(gcc) $< -o libxml-pull $(LIBXML_INCLUDE) $(LIBXML_LIB) $(LIBS) $(FLAGS)
 
151
 
145
152
libxml-dom: libxml-dom.c $(HEADERS)
146
153
        $(gcc) $< -o libxml-dom $(GDOME_INCLUDE) $(GDOME_LIB) $(LIBS) $(FLAGS)
147
154
 
258
265
rapidxml: rapidxml.cpp $(HEADERS)
259
266
        $(gpp) $< -o rapidxml $(RAPIDXML_INCLUDE) $(RAPIDXML_LIB) $(LIBS) $(FLAGS)
260
267
 
 
268
faxpp-pull: faxpp-pull.c $(HEADERS)
 
269
        $(gcc) $< -o faxpp-pull $(FAXPP_INCLUDE) $(FAXPP_LIB) $(LIBS) $(FLAGS)
 
270
 
261
271
vtdxml: vtdxml.c $(HEADERS)
262
272
        $(gcc) $< -o vtdxml $(VTDXML_INCLUDE) $(VTDXML_LIB) $(LIBS) $(FLAGS)
263
273