DMD   = E:\dmd\bin\dmd.exe
RC    = rc.exe
DFLAG = -O -release
DEF   = windows.def
SRCS  = stardust.d window.d mainwindow.d consts.d types.d system.d service.d event.d plugin.d vector.d string.d utils.d
LIBS  = gdi32.lib win32.lib
RES   = 
EXE   = release\StarDust.exe

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