You've already forked smb-decomp
mirror of
https://github.com/encounter/smb-decomp.git
synced 2026-03-30 11:38:28 -07:00
13 lines
195 B
Bash
Executable File
13 lines
195 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Generates a context file for use with decomp.me
|
|
|
|
src_file="$1"
|
|
|
|
if [ -z "$WINE" ]
|
|
then
|
|
WINE=wine
|
|
fi
|
|
|
|
"$WINE" mwcc_compiler/1.1/mwcceppc.exe -EP -i src -I- -i include "$src_file"
|