/xmlbench/trunk

To get this branch, use:
bzr branch http://darksoft.org/webbzr/xmlbench/trunk
1 by Suren A. Chilingaryan
Initial import
1
include ../Makefile.in
2
4 by Suren A. Chilingaryan
Mono validation and transformation benchmarks
3
TARGETS =
4
ifeq ($(JAVA),yes)
5
TARGETS += disp.class
6
endif
7
ifeq ($(MONO),yes)
8
TARGETS += disp.dll
9
endif
1 by Suren A. Chilingaryan
Initial import
10
11
all: $(TARGETS)
12
13
clean: 
14
	rm -rf $(TARGETS)
15
16
disp.class: disp.java
17
	javac $< 
4 by Suren A. Chilingaryan
Mono validation and transformation benchmarks
18
19
disp.dll: disp.cs
20
	$(mcs) /target:library disp.cs