From a571614c3b907e517b195a519eaa60cb3c7d31a5 Mon Sep 17 00:00:00 2001 From: Ethan Lee Date: Wed, 17 Apr 2013 01:53:14 -0400 Subject: [PATCH] Makefile for non-MonoDevelop users. --- Makefile | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..8c1dd6a --- /dev/null +++ b/Makefile @@ -0,0 +1,19 @@ +# Makefile for SDL2# +# Written by Ethan "flibitijibibo" Lee + +# Source Lists +SDL2 = \ + src/SDL2.cs \ + src/SDL2_image.cs \ + src/SDL2_mixer.cs \ + src/SDL2_ttf.cs + +# Targets + +build: + mkdir bin + cp SDL2#.dll.config bin + dmcs /unsafe -debug -out:bin/SDL2#.dll -target:library $(SDL2) + +clean: + rm -rf bin