Cleanup of directory structure
This commit is contained in:
parent
16ecf919ea
commit
ff73aa696a
2
Makefile
2
Makefile
|
@ -11,7 +11,7 @@ edit: edit.c shared.c edit.h shared.h globals.h defs.h
|
||||||
app: rc
|
app: rc
|
||||||
if [ `uname -s` != "Darwin" ]; then echo "Mac .app bundle generation is only available under OSX."; exit 1; fi;
|
if [ `uname -s` != "Darwin" ]; then echo "Mac .app bundle generation is only available under OSX."; exit 1; fi;
|
||||||
if [ -d RatCatcher.app ]; then rm -fr RatCatcher.app ; fi
|
if [ -d RatCatcher.app ]; then rm -fr RatCatcher.app ; fi
|
||||||
platypus -a rc -t shell -o None -u "Rob Pearce" -f data -f rc -f data run.sh RatCatcher.app
|
platypus -a rc -t shell -o None -u "Rob Pearce" -f data -f rc -f data scripts/run.sh RatCatcher.app
|
||||||
seticon -d icon.icns RatCatcher.app
|
seticon -d icon.icns RatCatcher.app
|
||||||
dylibbundler -od -b -x ./RatCatcher.app/Contents/Resources/rc -d ./RatCatcher.app/Contents/libs/ -p @executable_path/../libs/
|
dylibbundler -od -b -x ./RatCatcher.app/Contents/Resources/rc -d ./RatCatcher.app/Contents/libs/ -p @executable_path/../libs/
|
||||||
|
|
||||||
|
|
34
emptylevel
34
emptylevel
|
@ -1,34 +0,0 @@
|
||||||
tileset green
|
|
||||||
bg 0
|
|
||||||
hurryup 30
|
|
||||||
endmaps
|
|
||||||
*00000000000000000000000000000000000000*
|
|
||||||
*00000000000000000000000000000000000000*
|
|
||||||
*00000000000000000000000000000000000000*
|
|
||||||
*00000000000000000000000000000000000000*
|
|
||||||
*00000000000000000000000000000000000000*
|
|
||||||
*00000000000000000000000000000000000000*
|
|
||||||
*00000000000000000000000000000000000000*
|
|
||||||
*00000000000000000000000000000000000000*
|
|
||||||
*00000000000000000000000000000000000000*
|
|
||||||
*00000000000000000000000000000000000000*
|
|
||||||
*00000000000000000000000000000000000000*
|
|
||||||
*00000000000000000000000000000000000000*
|
|
||||||
*00000000000000000000000000000000000000*
|
|
||||||
*00000000000000000000000000000000000000*
|
|
||||||
*00000000000000000000000000000000000000*
|
|
||||||
*00000000000000000000000000000000000000*
|
|
||||||
*00000000000000000000000000000000000000*
|
|
||||||
*00000000000000000000000000000000000000*
|
|
||||||
*00000000000000000000000000000000000000*
|
|
||||||
*00000000000000000000000000000000000000*
|
|
||||||
*00000000000000000000000000000000000000*
|
|
||||||
*00000000000000000000000000000000000000*
|
|
||||||
*00000000000000000000000000000000000000*
|
|
||||||
*00000000000000000000000000000000000000*
|
|
||||||
*00000000000000000000000000000000000000*
|
|
||||||
*00000000000000000000000000000000000000*
|
|
||||||
*00000000000000000000000000000000000000*
|
|
||||||
*00000000000000000000000000000000000000*
|
|
||||||
*00000000000000000000000000000000000000*
|
|
||||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
@ -0,0 +1,6 @@
|
||||||
|
#!/bin/sh
|
||||||
|
PROGDIR=$1/Contents/Resources
|
||||||
|
DATADIR=$1/Contents/Resources/data
|
||||||
|
RC=rc
|
||||||
|
|
||||||
|
${PROGDIR}/${RC} -d $DATADIR
|
Loading…
Reference in New Issue