Makefile: Fixed bin folder not being created by "make libretro"

This commit is contained in:
Sour 2018-08-25 22:26:24 -04:00
parent 1139fb9ad2
commit 46c744808a

View file

@ -96,7 +96,8 @@ ui: InteropDLL/$(OBJFOLDER)/$(SHAREDLIB)
cd GUI.NET && xbuild /property:Configuration="Release" /property:Platform="$(MESENPLATFORM)" /property:PreBuildEvent="" /property:DefineConstants="HIDETESTMENU,DISABLEAUTOUPDATE"
libretro: Libretro/$(OBJFOLDER)/$(LIBRETROLIB)
cp ./Libretro/$(OBJFOLDER)/$(LIBRETROLIB) ./bin
mkdir -p bin
cp ./Libretro/$(OBJFOLDER)/$(LIBRETROLIB) ./bin/
core: InteropDLL/$(OBJFOLDER)/$(SHAREDLIB)