/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 create/Makefile

  • Committer: Suren A. Chilingaryan
  • Date: 2009-09-23 17:13:04 UTC
  • Revision ID: csa@dside.dyndns.org-20090923171304-osvtr4zqb29h11kd
Intel, Tango, Phobos, and RapidXML parsers; Memory benchmark scripts

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
include ../Makefile.in
2
2
 
3
3
ALLTARGETS = libxml libxml-dom expat-cslxml-dom expat-sablotron-dom \
4
 
        xerces-dom xml4c-dom oracle-dom oracle-dom++ qt-dom \
5
 
        sun_dom2.class oracle_dom2.class
 
4
        xerces-dom xml4c-dom oracle-dom oracle-dom++ qt-dom intel-dom \
 
5
        sun_dom2.class oracle_dom2.class intel_dom2.class
6
6
 
7
7
TARGETS = 
8
8
 
47
47
ifeq ($(SUN), yes)
48
48
TARGETS += sun_dom2.class
49
49
endif
 
50
ifeq ($(INTELJ), yes)
 
51
TARGETS += intel_dom2.class
 
52
endif
 
53
 
50
54
 
51
55
HEADERS = tools.h ../tools/disp.h
52
56
CLASSES = bench.class
96
100
bench.class: bench.java
97
101
        $(javac) -classpath $(SUN_CLASSPATH) $<
98
102
 
 
103
intel_dom2.class: intel_dom2.java $(CLASSES)
 
104
        source $(INTEL_ENV_SCRIPT) ; \
 
105
        CLASSPATH=`env  | grep CLASSPATH | cut -c 11-`  ; \
 
106
        $(javac) -classpath $(INTEL_CLASSPATH):$$CLASS_PATH $< 
 
107
 
99
108
qt-dom: qt-dom.cpp $(HEADERS)
100
109
        $(gpp) $< $(QT_INCLUDE) $(QT_LIB) -o qt-dom $(LIBS) $(FLAGS)
101
110