#/*
# * Bernoulli Compiler
# * Copyright (c) Cornell University
# * Department of Computer Science
# * 
# * Kamen Yotov (kamen@yotov.org)
# * 
# * $Source: C:/CVS/kyotov/kyotov/Research/BC/XTensions/makefile,v $
# * $Revision: 1.1 $
# * $Date: 2002/10/23 06:07:34 $
# */

NAME = XTensions

!INCLUDE "..\makefile.mak"

!IF EXIST(sources.lst)
SOURCES = \
!INCLUDE "sources.lst"

!ENDIF

build: 
	dir *.cs /s /b | $(FILTER) ".*" "  {0} \\" > sources.lst
	nmake /NOLOGO $(D)\XTensions.dll
	del sources.lst

$(D)\XTensions.dll: $(SOURCES)
	$(CSC) $(CSCFlags) /target:library /out:$@ $(SOURCES)

!INCLUDE "..\copy.mak"
