Case-sensitive output folders to match csproj

pull/99/head
Ethan Lee 2015-12-16 18:35:18 -05:00
parent 1c03cdfb2c
commit 5d5f4154bb
1 changed files with 8 additions and 8 deletions

View File

@ -12,20 +12,20 @@ SRC = \
# Targets
debug: clean-debug
mkdir -p bin/debug
cp SDL2-CS.dll.config bin/debug
dmcs /unsafe -debug -out:bin/debug/SDL2-CS.dll -target:library $(SRC)
mkdir -p bin/Debug
cp SDL2-CS.dll.config bin/Debug
dmcs /unsafe -debug -out:bin/Debug/SDL2-CS.dll -target:library $(SRC)
clean-debug:
rm -rf bin/debug
rm -rf bin/Debug
release: clean-release
mkdir -p bin/release
cp SDL2-CS.dll.config bin/release
dmcs /unsafe -optimize -out:bin/release/SDL2-CS.dll -target:library $(SRC)
mkdir -p bin/Release
cp SDL2-CS.dll.config bin/Release
dmcs /unsafe -optimize -out:bin/Release/SDL2-CS.dll -target:library $(SRC)
clean-release:
rm -rf bin/release
rm -rf bin/Release
clean: clean-debug clean-release
rm -rf bin