/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 xsl/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 xml4c-dom expat-sablotron-dom oracle-dom sun_dom2.class \
4
 
        xerces-dom
 
4
        xerces-dom intel_dom2.class intel-dom
5
5
 
6
6
TARGETS =
7
7
 
33
33
TARGETS += sun_dom2.class
34
34
endif
35
35
 
 
36
ifeq ($(INTELJ), yes)
 
37
TARGETS += intel_dom2.class
 
38
endif
36
39
 
37
40
HEADERS = tools.h tools2.h ../tools/disp.h ../xmlgen/xmlgen.h ../xmlgen/opcgen.h ../xmlgen/random.h
38
41
 
75
78
sun_dom2.class: sun_dom2.java $(CLASSES)
76
79
        $(javac) -classpath $(SUN_CLASSPATH) $< 
77
80
 
 
81
intel_dom2.class: intel_dom2.java $(CLASSES)
 
82
        source $(INTEL_ENV_SCRIPT) ; \
 
83
        CLASSPATH=`env  | grep CLASSPATH | cut -c 11-`  ; \
 
84
        $(javac) -classpath $(INTEL_CLASSPATH):$$CLASS_PATH $< 
 
85
 
78
86
bench.class: bench.java
79
87
        $(javac) -classpath $(SUN_CLASSPATH) $<