Adding proper -optimize flag to release build make target.

This commit is contained in:
nickgravelyn 2014-05-08 23:02:10 -07:00
parent 1a8273cdc2
commit 55c7c04b0b

View file

@ -104,7 +104,7 @@ clean-debug:
release: clean-release
mkdir -p bin/release
cp SDL2-CS.dll.config bin/release
dmcs /unsafe -out:bin/release/SDL2-CS.dll -target:library $(SDL2) $(MINITK) $(DEPS)
dmcs /unsafe -optimize -out:bin/release/SDL2-CS.dll -target:library $(SDL2) $(MINITK) $(DEPS)
clean-release:
rm -rf bin/release