#/*
# * Bernoulli Compiler
# * Copyright (c) Cornell University
# * Department of Computer Science
# * 
# * Kamen Yotov (kamen@yotov.org)
# * 
# * $Source: C:/CVS/kyotov/kyotov/Research/BC/CXmlSignature/makefile,v $
# * $Revision: 1.4 $
# * $Date: 2003/03/17 06:35:47 $
# */

TARGET = BC.C.Signature.dll
CLEANUP = *.cs

!INCLUDE <..\makefile.mak>

BC.C.Signature.dll: C.cs BC.Core.dll
	$(CSC) /out:$@ /target:library C.cs /r:BC.Core.dll

C.cs: C.xml ..\XmlSignature\bin\$(CONFIG)\XmlSignature.exe
	$(CLIX) ..\XmlSignature\bin\$(CONFIG)\XmlSignature.exe C.xml ..\XmlSignature\Signature.xsd > $@

BC.Core.dll: ..\Core\bin\$(CONFIG)\BC.Core.dll
	$(COPY) $** $@