Show More
Commit Description:
Fix tick marks....
Commit Description:
Fix tick marks. Use the range (rather than the domain) so the ticks are spaced appropriately. Also sets an arbitrary range if the full range is 0 (if the series is always at the same value) so that the line actually appears.
File last commit:
Show/Diff file:
Action:
FNA/abi/Makefile
38 lines | 1.1 KiB | text/x-makefile | MakefileLexer
Early working version (including all dependencies, lol).
r0 # Makefile for FNA ABI Compatibility Files
# Written by Ethan "flibitijibibo" Lee
all: Microsoft.Xna.Framework Game Graphics GamerServices Graphics Input.Touch Net Storage Video Xact
Microsoft.Xna.Framework: fnacopy
mcs Microsoft.Xna.Framework.cs -target:library -r:FNA.dll
Game: fnacopy
mcs Microsoft.Xna.Framework.Game.cs -target:library -r:FNA.dll -r:FNA.NetStub.dll
GamerServices: fnacopy
mcs Microsoft.Xna.Framework.GamerServices.cs -target:library -r:FNA.dll -r:FNA.NetStub.dll
Graphics: fnacopy
mcs Microsoft.Xna.Framework.Graphics.cs -target:library -r:FNA.dll
Input.Touch: fnacopy
mcs Microsoft.Xna.Framework.Input.Touch.cs -target:library -r:FNA.dll
Net: fnacopy
mcs Microsoft.Xna.Framework.Net.cs -target:library -r:FNA.dll -r:FNA.NetStub.dll
Storage: fnacopy
mcs Microsoft.Xna.Framework.Storage.cs -target:library -r:FNA.dll
Video: fnacopy
mcs Microsoft.Xna.Framework.Video.cs -target:library -r:FNA.dll
Xact: fnacopy
mcs Microsoft.Xna.Framework.Xact.cs -target:library -r:FNA.dll
fnacopy: clean
cp ../bin/Debug/FNA.dll .
cp ../../FNA.NetStub/bin/Debug/FNA.NetStub.dll .
clean:
rm -f *.dll