DMD   = E:\dmd\bin\dmd.exe
RC    = rc.exe
DFLAG = -O -release
DEF   = test.def
SRCS  = test.d consts.d types.d
LIBS  = win32.lib
RES   = 
EXE   = Test.dll

all:
	$(DMD) $(SRCS) $(DEF) $(LIBS) $(DFLAGS) -of$(EXE)
	DEL *.obj
