summaryrefslogtreecommitdiffstats
path: root/tools/Sandcastle/Source/BuildAssembler/SyntaxComponents/makefile
diff options
context:
space:
mode:
Diffstat (limited to 'tools/Sandcastle/Source/BuildAssembler/SyntaxComponents/makefile')
-rw-r--r--tools/Sandcastle/Source/BuildAssembler/SyntaxComponents/makefile11
1 files changed, 11 insertions, 0 deletions
diff --git a/tools/Sandcastle/Source/BuildAssembler/SyntaxComponents/makefile b/tools/Sandcastle/Source/BuildAssembler/SyntaxComponents/makefile
new file mode 100644
index 0000000..defc9db
--- /dev/null
+++ b/tools/Sandcastle/Source/BuildAssembler/SyntaxComponents/makefile
@@ -0,0 +1,11 @@
+
+LIBRARY = ..\BuildComponents\BuildComponents.dll
+
+COMPONENT_FILES = SyntaxGenerators.cs CSharpDeclarationSyntax.cs VisualBasicDeclarationSyntax.cs CPlusPlusDeclarationSyntax.cs JSharpDeclarationSyntax.cs
+COMPONENT_FILES_OLD = SyntaxGenerators.cs CSharpDeclarationSyntax.cs VisualBasicDeclarationSyntax.cs
+
+all: SyntaxGenerators.dll
+
+SyntaxGenerators.dll: $(COMPONENT_FILES) $(LIBRARY)
+ csc /t:library /out:SyntaxGenerators.dll $(COMPONENT_FILES) /r:$(LIBRARY)
+ copy SyntaxGenerators.dll ..\..\ProductionTools\BuildComponents \ No newline at end of file