add windows target
[mono.git] / mcs / mbas / makefile
index d5794bc55a937e99ac53e260ca7222f0f94f95f8..3de2efec1e34069e19c49d701cd819c00ee334b5 100644 (file)
@@ -4,6 +4,7 @@ CSCFLAGS=/nologo /optimize /target:exe /r:System.dll /r:../class/lib/Mono.GetOpt
 COMPILER_SOURCES = \
     AssemblyInfo.cs   \
        assign.cs               \
+       argument.cs             \
        attribute.cs            \
        cfold.cs                \
        class.cs                \
@@ -36,11 +37,16 @@ COMPILER_SOURCES = \
        typemanager.cs
 
 linux: all
+windows: all
 
 all: mbas.exe
 
 test: mbas.exe
-       mono mbas.exe --main WriteOK testmbas/WriteOK.vb
+       mono mbas.exe --stacktrace --main WriteOK testmbas/WriteOK.vb testmbas/WriteOK2.mbs
+       mono testmbas/WriteOK.exe
+
+verbose: mbas.exe
+       mono mbas.exe --stacktrace --verbose --main WriteOK testmbas/WriteOK.vb testmbas/WriteOK2.mbs | less
 
 mbas.exe: $(COMPILER_SOURCES)
        $(CSC) $(CSCFLAGS) $(COMPILER_SOURCES)