/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 validate/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
 
ALLTARGETS = xerces-dom xml4c-dom oracle-dom libxml sun_dom2.class
 
3
ALLTARGETS = intel-dom xerces-dom xml4c-dom oracle-dom libxml sun_dom2.class intel_dom2.class
4
4
 
5
5
TARGETS = 
6
6
 
26
26
TARGETS += sun_dom2.class
27
27
endif
28
28
 
 
29
ifeq ($(INTELJ), yes)
 
30
TARGETS += intel_dom2.class
 
31
endif
 
32
 
29
33
 
30
34
HEADERS = tools.h tools2.h ../tools/disp.h ../xmlgen/xmlgen.h ../xmlgen/opcgen.h ../xmlgen/random.h
31
35
 
65
69
sun_dom2.class: sun_dom2.java $(CLASSES)
66
70
        $(javac) -classpath $(SUN_CLASSPATH) $< 
67
71
 
 
72
intel_dom2.class: intel_dom2.java $(CLASSES)
 
73
        source $(INTEL_ENV_SCRIPT) ; \
 
74
        CLASSPATH=`env  | grep CLASSPATH | cut -c 11-`  ; \
 
75
        $(javac) -classpath $(INTEL_CLASSPATH):$$CLASS_PATH $< 
 
76
 
68
77
bench.class: bench.java
69
78
        $(javac) -classpath $(SUN_CLASSPATH) $<