mirror of
https://github.com/libretro/Mesen.git
synced 2025-01-21 00:04:24 +00:00
10 lines
238 B
Bash
Executable File
10 lines
238 B
Bash
Executable File
#!/bin/sh
|
|
MESENPLATFORM=x64 make clean
|
|
MESENPLATFORM=x64 make core -j 4
|
|
|
|
MESENPLATFORM=x86 make clean
|
|
MESENPLATFORM=x86 make core -j 4
|
|
|
|
cp ./InteropDLL/obj.x64/libMesenCore.x64.dll ./bin
|
|
cp ./InteropDLL/obj.x86/libMesenCore.x86.dll ./bin
|