Added a small shell script to run enough SetFile commands to make
authorsimon <simon@cda61777-01e9-0310-a592-d414129be87e>
Sat, 5 Feb 2005 14:46:39 +0000 (14:46 +0000)
committersimon <simon@cda61777-01e9-0310-a592-d414129be87e>
Sat, 5 Feb 2005 14:46:39 +0000 (14:46 +0000)
MPW builds work after checking out on Mac OS X.

git-svn-id: svn://svn.tartarus.org/sgt/putty@5255 cda61777-01e9-0310-a592-d414129be87e

mac/setfile.sh [new file with mode: 0755]

diff --git a/mac/setfile.sh b/mac/setfile.sh
new file mode 100755 (executable)
index 0000000..da5b990
--- /dev/null
@@ -0,0 +1,22 @@
+#!/bin/sh 
+
+# Shell script to be run on Mac OS X, which uses `SetFile' to set
+# up the appropriate file metadata so that you can run MPW and have
+# it build classic-Mac PuTTY.
+
+SETFILE=/Developer/Tools/SetFile
+
+# I want to be able to run this either from the `mac' subdirectory
+# or from the main `putty' source directory.
+if test -f mac_res.r -a -f ../putty.h; then
+  cd ..
+fi
+if test ! -f putty.h; then
+  echo 'putty.h not found.' >&2
+  echo 'This script should be run in the PuTTY source directory.' >&2
+  exit 1
+fi
+
+# Now we can assume we're in the main PuTTY source dir.
+find . -name .svn -prune -o -name '*.[chr]' -exec $SETFILE -t TEXT {} \;
+$SETFILE -t TEXT mac/mkputty.mpw