Makefile for non-MonoDevelop users.

This commit is contained in:
Ethan Lee 2013-04-17 01:53:14 -04:00
parent f6eff6c217
commit a571614c3b

19
Makefile Normal file
View file

@ -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