/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-09-29 13:48:57 UTC
  • Revision ID: csa@dside.dyndns.org-20090929134857-4na5zz7nzgbg73o8
QT Pull Parser

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
        expat-cslxml-sax expat-cslxml-dom expat-sablotron-dom \
6
6
        xerces-sax xerces-dom xml4c-sax xml4c-dom \
7
7
        oracle-dom oracle-sax oracle-dom++ oracle-sax++ \
8
 
        rxp qt-sax qt-dom intel-dom intel-sax asmxml parabix \
 
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
11
        rapidxml vtdxml \
85
85
endif
86
86
 
87
87
ifeq ($(QT), yes)
88
 
TARGETS += qt-sax qt-dom
 
88
TARGETS += qt-sax qt-dom qt-pull
89
89
endif
90
90
 
91
91
ifeq ($(XDKJ), yes)
231
231
qt-sax: qt-sax.cpp $(HEADERS)
232
232
        $(gpp) $< $(QT_INCLUDE) $(QT_LIB)  -o qt-sax $(LIBS) $(FLAGS)
233
233
 
 
234
qt-pull: qt-pull.cpp $(HEADERS)
 
235
        $(gpp) $< $(QT_INCLUDE) $(QT_LIB)  -o qt-pull $(LIBS) $(FLAGS)
 
236
 
234
237
qt-dom: qt-dom.cpp $(HEADERS)
235
238
        $(gpp) $< $(QT_INCLUDE) $(QT_LIB) -o qt-dom $(LIBS) $(FLAGS)
236
239