/xmlbench/trunk

To get this branch, use:
bzr branch http://darksoft.org/webbzr/xmlbench/trunk
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
include ../Makefile.in

TARGETS =
ifeq ($(JAVA),yes)
TARGETS += disp.class
endif
ifeq ($(MONO),yes)
TARGETS += disp.dll
endif

all: $(TARGETS)

clean: 
	rm -rf $(TARGETS)

disp.class: disp.java
	javac $< 

disp.dll: disp.cs
	$(mcs) /target:library disp.cs