/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-28 23:02:52 UTC
  • Revision ID: csa@dside.dyndns.org-20090928230252-d05nbdkg6q4zvu8i
Mono validation and transformation benchmarks

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
TARGETS += intel_dom2.class
31
31
endif
32
32
 
 
33
ifeq ($(MONO), yes)
 
34
TARGETS += mono-dom.exe
 
35
endif
 
36
 
33
37
 
34
38
HEADERS = tools.h tools2.h ../tools/disp.h ../xmlgen/xmlgen.h ../xmlgen/opcgen.h ../xmlgen/random.h
35
39
 
38
42
all:    $(TARGETS)
39
43
 
40
44
clean:
41
 
        rm -f $(ALLTARGETS) $(CLASSES)
 
45
        rm -f $(ALLTARGETS) $(CLASSES) *.dll *.exe
42
46
 
43
47
libxml: libxml.c $(HEADERS)
44
48
        $(gcc) $< -o libxml $(LIBXML_INCLUDE) $(LIBXML_LIB) -lxml2
76
80
 
77
81
bench.class: bench.java
78
82
        $(javac) -classpath $(SUN_CLASSPATH) $<
 
83
 
 
84
bench.dll: bench.cs ../tools/disp.dll
 
85
        $(mcs)  /target:library /r:../tools/disp.dll bench.cs
 
86
 
 
87
mono-dom.exe: mono-dom.cs bench.dll
 
88
        $(mcs) /r:bench.dll mono-dom.cs