mirror of
https://github.com/Michaelangel007/hgr2rgbntsc.git
synced 2024-12-21 02:31:58 +00:00
12 lines
207 B
Bash
Executable File
12 lines
207 B
Bash
Executable File
#!/bin/sh
|
|
UNAME=`uname -s`
|
|
if [ ${UNAME} == "Darwin" ]; then
|
|
APP=bin/hgr2rgb.osx
|
|
elif [ ${UNAME} == "Linux" ]; then
|
|
APP=bin/hgr2rgb.elf
|
|
fi
|
|
|
|
${APP} -tga hgr/archon.hgr2
|
|
${APP} -bmp hgr/archon.hgr2
|
|
|