/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 security/Makefile

  • Committer: Suren A. Chilingaryan
  • Date: 2009-10-08 03:17:59 UTC
  • Revision ID: csa@dside.dyndns.org-20091008031759-u5ys779huye7feni
LibXML Pull Parser, FAXPP Parser, Mono security benchmark, multiple fixes

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
ifeq ($(XSECURITY), yes)
22
22
TARGETS += xerces-dom
23
23
endif
 
24
ifeq ($(MONO), yes)
 
25
TARGETS += mono-dom.exe
 
26
endif
 
27
 
24
28
 
25
29
all:    $(TARGETS)
26
30
 
27
31
clean:
28
 
        rm -f $(ALLTARGETS)  $(CLASSES)
 
32
        rm -f $(ALLTARGETS)  $(CLASSES) *.exe *.dll
29
33
 
30
34
libxml: libxml.c $(HEADERS)
31
35
        $(gcc) $< -o libxml $(XMLSEC_INCLUDE) $(XMLSEC_LIB) $(LIBS) $(FLAGS) 
41
45
 
42
46
bench.class: bench.java
43
47
        $(javac) -classpath $(SUN_CLASSPATH) $<
 
48
 
 
49
bench.dll: bench.cs ../tools/disp.dll
 
50
        $(mcs)  /target:library /r:../tools/disp.dll bench.cs
 
51
 
 
52
mono-dom.exe: mono-dom.cs bench.dll
 
53
        $(gmcs) /r:bench.dll /r:System.Security.dll /r:System.Xml.dll mono-dom.cs