mirror of
https://github.com/Ryujinx/SDL2-CS.git
synced 2025-01-22 13:51:10 +00:00
Case-sensitive output folders to match csproj
This commit is contained in:
parent
1c03cdfb2c
commit
5d5f4154bb
16
Makefile
16
Makefile
|
@ -12,20 +12,20 @@ SRC = \
|
||||||
# Targets
|
# Targets
|
||||||
|
|
||||||
debug: clean-debug
|
debug: clean-debug
|
||||||
mkdir -p bin/debug
|
mkdir -p bin/Debug
|
||||||
cp SDL2-CS.dll.config bin/debug
|
cp SDL2-CS.dll.config bin/Debug
|
||||||
dmcs /unsafe -debug -out:bin/debug/SDL2-CS.dll -target:library $(SRC)
|
dmcs /unsafe -debug -out:bin/Debug/SDL2-CS.dll -target:library $(SRC)
|
||||||
|
|
||||||
clean-debug:
|
clean-debug:
|
||||||
rm -rf bin/debug
|
rm -rf bin/Debug
|
||||||
|
|
||||||
release: clean-release
|
release: clean-release
|
||||||
mkdir -p bin/release
|
mkdir -p bin/Release
|
||||||
cp SDL2-CS.dll.config bin/release
|
cp SDL2-CS.dll.config bin/Release
|
||||||
dmcs /unsafe -optimize -out:bin/release/SDL2-CS.dll -target:library $(SRC)
|
dmcs /unsafe -optimize -out:bin/Release/SDL2-CS.dll -target:library $(SRC)
|
||||||
|
|
||||||
clean-release:
|
clean-release:
|
||||||
rm -rf bin/release
|
rm -rf bin/Release
|
||||||
|
|
||||||
clean: clean-debug clean-release
|
clean: clean-debug clean-release
|
||||||
rm -rf bin
|
rm -rf bin
|
||||||
|
|
Loading…
Reference in a new issue