1 |
nigel |
1.2 |
#!/bin/sh |
2 |
nigel |
1.3 |
# |
3 |
nigel |
1.7 |
# $Id: 1_prepare_files.sh,v 1.6 2003/03/24 06:18:20 nigel Exp $ |
4 |
nigel |
1.3 |
# |
5 |
nigel |
1.2 |
# Run this to generate all the initial makefiles, etc. |
6 |
|
|
|
7 |
|
|
# |
8 |
|
|
# Note that we actually don't need a config.guess |
9 |
|
|
# We could instead do something like: |
10 |
|
|
# ./configure --build=powerpc-apple-darwin6.1 |
11 |
|
|
# |
12 |
|
|
if [ -e /usr/libexec/config.guess ] |
13 |
|
|
then |
14 |
|
|
# |
15 |
|
|
# MacOS X 10.1 |
16 |
|
|
# |
17 |
nigel |
1.3 |
ln -sf /usr/libexec/config.guess . |
18 |
|
|
ln -sf /usr/libexec/config.sub . |
19 |
nigel |
1.2 |
else |
20 |
|
|
# |
21 |
|
|
# MacOS X 10.2 (and later?) |
22 |
|
|
# |
23 |
nigel |
1.3 |
ln -sf /usr/share/libtool/config.guess . |
24 |
|
|
ln -sf /usr/share/libtool/config.sub . |
25 |
nigel |
1.2 |
fi |
26 |
|
|
|
27 |
nigel |
1.6 |
ln -sf ../Unix/sys_unix.cpp . |
28 |
nigel |
1.7 |
ln -sf ../Unix/timer_unix.cpp . |
29 |
nigel |
1.3 |
ln -sf ../Unix/user_strings_unix.h . |
30 |
|
|
ln -sf ../Unix/install-sh . |
31 |
|
|
ln -sf ../../README README.txt |
32 |
nigel |
1.2 |
|
33 |
nigel |
1.5 |
# |
34 |
|
|
# This is how I generated the button images: |
35 |
|
|
# |
36 |
|
|
#T=/System/Library/CoreServices/loginwindow.app/Resources |
37 |
|
|
#tiffutil -cat $T/resetH.tif -out English.lproj/MainMenu.nib/resetH.tiff |
38 |
|
|
#tiffutil -cat $T/resetN.tif -out English.lproj/MainMenu.nib/resetN.tiff |
39 |
|
|
#tiffutil -cat $T/shutdownH.tif -out English.lproj/MainMenu.nib/shutdownH.tiff |
40 |
|
|
#tiffutil -cat $T/shutdownN.tif -out English.lproj/MainMenu.nib/shutdownN.tiff |
41 |
|
|
#unset T |
42 |
nigel |
1.4 |
|
43 |
|
|
# |
44 |
|
|
# Generate ./configure from configure.in |
45 |
|
|
# |
46 |
nigel |
1.1 |
autoconf |
47 |
nigel |
1.2 |
|
48 |
nigel |
1.4 |
# |
49 |
|
|
# Generate config.h.in from configure.in |
50 |
|
|
# |
51 |
nigel |
1.3 |
autoheader |
52 |
|
|
|
53 |
nigel |
1.2 |
if test -z "$*"; then |
54 |
nigel |
1.3 |
echo "*************************************************" |
55 |
|
|
echo "I am going to run ./configure with no arguments -" |
56 |
|
|
echo " if you wish to pass any to it, please specify" |
57 |
|
|
echo " them on the $0 command line." |
58 |
|
|
echo "*************************************************" |
59 |
nigel |
1.2 |
fi |
60 |
|
|
|
61 |
|
|
./configure "$@" |