-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactored the MakeyMakey system to build to .NET Core 2.0 projects.
- Loading branch information
1 parent
9d70118
commit 50d4229
Showing
154 changed files
with
2,153 additions
and
9,746 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
|
||
# Supplemental Makefile for Visual Studios Projects | ||
# | ||
# Visual Studio is responsible for managing rules for production of | ||
# code but does not provide support for pre and post build actions. | ||
# | ||
# Prebuild items supported: | ||
# [None currently] | ||
# | ||
# PostBuild items supported: | ||
# * Copy library to locations on disk | ||
# * Build ilMerge executables | ||
# * Postprocess VSIX projects | ||
# * Copy executables | ||
|
||
|
||
.PHONY : all always clean install publish prebuild prebuildRecurse postbuild postbuildRecurse | ||
|
||
MSBuildThisFileDirectory = | ||
|
||
LinkFiles = \ | ||
Goedel.Tool.Library.dll | ||
|
||
ToolTargets = | ||
|
||
|
||
prebuildRecurse : | ||
cd ..\Goedel.Tool.ASN && nmake /c /f VS.make prebuild | ||
cd ..\..\..\mmm\Libraries\Goedel.ASN && nmake /c /f VS.make prebuild | ||
|
||
|
||
postbuildRecurse : | ||
cd ..\Goedel.Tool.ASN && nmake /c /f VS.make postbuild | ||
cd ..\..\..\mmm\Libraries\Goedel.ASN && nmake /c /f VS.make postbuild | ||
|
||
|
||
prebuild : prebuildRecurse $(ToolTargets) | ||
|
||
postbuild : postbuildRecurse | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
|
||
# Supplemental Makefile for Visual Studios Projects | ||
# | ||
# Visual Studio is responsible for managing rules for production of | ||
# code but does not provide support for pre and post build actions. | ||
# | ||
# Prebuild items supported: | ||
# [None currently] | ||
# | ||
# PostBuild items supported: | ||
# * Copy library to locations on disk | ||
# * Build ilMerge executables | ||
# * Postprocess VSIX projects | ||
# * Copy executables | ||
|
||
|
||
.PHONY : all always clean install publish prebuild prebuildRecurse postbuild postbuildRecurse | ||
|
||
MSBuildThisFileDirectory = | ||
|
||
LinkFiles = | ||
|
||
ToolTargets = \ | ||
Asn2.cs\ | ||
GenerateCS.cs | ||
|
||
Asn2.cs : Asn2.gdl | ||
goedel3 Asn2.gdl Asn2.cs | ||
|
||
GenerateCS.cs : GenerateCS.script | ||
gscript GenerateCS.script GenerateCS.cs | ||
|
||
|
||
prebuildRecurse : | ||
|
||
|
||
postbuildRecurse : | ||
|
||
|
||
prebuild : prebuildRecurse $(ToolTargets) | ||
|
||
postbuild : postbuildRecurse | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
|
||
# Supplemental Makefile for Visual Studios Projects | ||
# | ||
# Visual Studio is responsible for managing rules for production of | ||
# code but does not provide support for pre and post build actions. | ||
# | ||
# Prebuild items supported: | ||
# [None currently] | ||
# | ||
# PostBuild items supported: | ||
# * Copy library to locations on disk | ||
# * Build ilMerge executables | ||
# * Postprocess VSIX projects | ||
# * Copy executables | ||
|
||
|
||
.PHONY : all always clean install publish prebuild prebuildRecurse postbuild postbuildRecurse | ||
|
||
MSBuildThisFileDirectory = | ||
|
||
LinkFiles = \ | ||
Goedel.Tool.Shell.dll | ||
|
||
ToolTargets = \ | ||
ASN2.cs | ||
|
||
ASN2.cs : ASN2.command | ||
commandparse ASN2.command ASN2.cs | ||
|
||
|
||
prebuildRecurse : | ||
cd ..\Goedel.Tool.ASN && nmake /c /f VS.make prebuild | ||
cd ..\..\..\mmm\Libraries\Goedel.ASN && nmake /c /f VS.make prebuild | ||
|
||
|
||
postbuildRecurse : | ||
cd ..\Goedel.Tool.ASN && nmake /c /f VS.make postbuild | ||
cd ..\..\..\mmm\Libraries\Goedel.ASN && nmake /c /f VS.make postbuild | ||
|
||
|
||
prebuild : prebuildRecurse $(ToolTargets) | ||
|
||
postbuild : postbuildRecurse | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
|
||
# Supplemental Makefile for Visual Studios Projects | ||
# | ||
# Visual Studio is responsible for managing rules for production of | ||
# code but does not provide support for pre and post build actions. | ||
# | ||
# Prebuild items supported: | ||
# [None currently] | ||
# | ||
# PostBuild items supported: | ||
# * Copy library to locations on disk | ||
# * Build ilMerge executables | ||
# * Postprocess VSIX projects | ||
# * Copy executables | ||
|
||
|
||
.PHONY : all always clean install publish prebuild prebuildRecurse postbuild postbuildRecurse | ||
|
||
MSBuildThisFileDirectory = | ||
|
||
LinkFiles = \ | ||
Goedel.Tool.Shell.dll | ||
|
||
ToolTargets = \ | ||
Command.cs | ||
|
||
Command.cs : Command.command | ||
commandparse Command.command Command.cs | ||
|
||
|
||
prebuildRecurse : | ||
|
||
|
||
postbuildRecurse : | ||
|
||
|
||
prebuild : prebuildRecurse $(ToolTargets) | ||
|
||
postbuild : postbuildRecurse | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
|
||
# Supplemental Makefile for Visual Studios Projects | ||
# | ||
# Visual Studio is responsible for managing rules for production of | ||
# code but does not provide support for pre and post build actions. | ||
# | ||
# Prebuild items supported: | ||
# [None currently] | ||
# | ||
# PostBuild items supported: | ||
# * Copy library to locations on disk | ||
# * Build ilMerge executables | ||
# * Postprocess VSIX projects | ||
# * Copy executables | ||
|
||
|
||
.PHONY : all always clean install publish prebuild prebuildRecurse postbuild postbuildRecurse | ||
|
||
MSBuildThisFileDirectory = | ||
|
||
LinkFiles = \ | ||
Goedel.Tool.Library.dll | ||
|
||
ToolTargets = | ||
|
||
|
||
prebuildRecurse : | ||
cd ..\Goedel.Tool.Command && nmake /c /f VS.make prebuild | ||
|
||
|
||
postbuildRecurse : | ||
cd ..\Goedel.Tool.Command && nmake /c /f VS.make postbuild | ||
|
||
|
||
prebuild : prebuildRecurse $(ToolTargets) | ||
|
||
postbuild : postbuildRecurse | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
|
||
# Supplemental Makefile for Visual Studios Projects | ||
# | ||
# Visual Studio is responsible for managing rules for production of | ||
# code but does not provide support for pre and post build actions. | ||
# | ||
# Prebuild items supported: | ||
# [None currently] | ||
# | ||
# PostBuild items supported: | ||
# * Copy library to locations on disk | ||
# * Build ilMerge executables | ||
# * Postprocess VSIX projects | ||
# * Copy executables | ||
|
||
|
||
.PHONY : all always clean install publish prebuild prebuildRecurse postbuild postbuildRecurse | ||
|
||
MSBuildThisFileDirectory = | ||
|
||
LinkFiles = | ||
|
||
ToolTargets = \ | ||
Command.cs\ | ||
Generate.cs | ||
|
||
Command.cs : Command.gdl | ||
goedel3 Command.gdl Command.cs | ||
|
||
Generate.cs : Generate.script | ||
gscript Generate.script Generate.cs | ||
|
||
|
||
prebuildRecurse : | ||
|
||
|
||
postbuildRecurse : | ||
|
||
|
||
prebuild : prebuildRecurse $(ToolTargets) | ||
|
||
postbuild : postbuildRecurse | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
|
||
# Supplemental Makefile for Visual Studios Projects | ||
# | ||
# Visual Studio is responsible for managing rules for production of | ||
# code but does not provide support for pre and post build actions. | ||
# | ||
# Prebuild items supported: | ||
# [None currently] | ||
# | ||
# PostBuild items supported: | ||
# * Copy library to locations on disk | ||
# * Build ilMerge executables | ||
# * Postprocess VSIX projects | ||
# * Copy executables | ||
|
||
|
||
.PHONY : all always clean install publish prebuild prebuildRecurse postbuild postbuildRecurse | ||
|
||
MSBuildThisFileDirectory = | ||
|
||
LinkFiles = \ | ||
.dll\ | ||
Goedel.Tool.Shell.dll | ||
|
||
ToolTargets = \ | ||
Command.cs | ||
|
||
Command.cs : Command.command | ||
commandparse Command.command Command.cs | ||
|
||
|
||
prebuildRecurse : | ||
cd ..\Goedel.Tool.Command && nmake /c /f VS.make prebuild | ||
|
||
|
||
postbuildRecurse : | ||
cd ..\Goedel.Tool.Command && nmake /c /f VS.make postbuild | ||
|
||
|
||
prebuild : prebuildRecurse $(ToolTargets) | ||
|
||
postbuild : postbuildRecurse | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.