Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/mbas/makefile')
-rw-r--r--mcs/mbas/makefile62
1 files changed, 0 insertions, 62 deletions
diff --git a/mcs/mbas/makefile b/mcs/mbas/makefile
deleted file mode 100644
index 704d53535b8..00000000000
--- a/mcs/mbas/makefile
+++ /dev/null
@@ -1,62 +0,0 @@
-CSC=csc.exe
-CSCFLAGS=/nologo /debug+ /debug:full /optimize /target:exe /r:System.dll /r:Mono.GetOptions.dll /out:mbas.exe
-
-VERSION=0.13
-
-COMPILER_SOURCES = \
- AssemblyInfo.cs \
- assign.cs \
- attribute.cs \
- cfold.cs \
- class.cs \
- codegen.cs \
- const.cs \
- constant.cs \
- decl.cs \
- delegate.cs \
- driver.cs \
- enum.cs \
- ecore.cs \
- expression.cs \
- genericparser.cs \
- interface.cs \
- literal.cs \
- location.cs \
- mb-parser.cs \
- mb-tokenizer.cs \
- modifiers.cs \
- module.cs \
- namespace.cs \
- parameter.cs \
- pending.cs \
- report.cs \
- rootcontext.cs \
- statement.cs \
- statementCollection.cs \
- support.cs \
- tree.cs \
- typemanager.cs
-
-all: mbas.exe
-
-parser: mb-parser.cs
-
-mbas.exe: $(COMPILER_SOURCES)
- $(CSC) $(CSCFLAGS) $(COMPILER_SOURCES)
-
-docs: $(COMPILER_SOURCES)
- $(CSC) $(CSCFLAGS) /doc:docs.xml /nowarn:1591 $(COMPILER_SOURCES)
-
-windows: all
-
-linux: all
-
-opt:
- $(CSC) /nologo /optimize+ /r:System.dll /target:exe /out:mbas.exe $(COMPILER_SOURCES)
-
-clean:
- rm -f mbas.exe y.output mbas.pdb *~ .*~ mb-parser.cs mbas.log response
-
-mb-parser.cs: mb-parser.jay
- ../jay/jay -ctv < ../jay/skeleton.cs mb-parser.jay > mb-parser.cs
-