ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/cebix/BasiliskII/src/MacOSX/1_prepare_files.sh
Revision: 1.9
Committed: 2003-08-02T08:19:48Z (21 years, 1 month ago) by nigel
Content type: application/x-sh
Branch: MAIN
Changes since 1.8: +5 -22 lines
Log Message:
Updated Unix config.{guess,sub} which know about Darwin means that
we can use them instead of looking for the OS X installed versions.

File Contents

# User Rev Content
1 nigel 1.2 #!/bin/sh
2 nigel 1.3 #
3 nigel 1.9 # $Id: 1_prepare_files.sh,v 1.8 2003/06/03 12:14:45 nigel Exp $
4 nigel 1.3 #
5 nigel 1.2 # Run this to generate all the initial makefiles, etc.
6    
7 nigel 1.9 ln -sf ../Unix/config.guess .
8     ln -sf ../Unix/config.sub .
9 nigel 1.6 ln -sf ../Unix/sys_unix.cpp .
10 nigel 1.7 ln -sf ../Unix/timer_unix.cpp .
11 nigel 1.3 ln -sf ../Unix/user_strings_unix.h .
12     ln -sf ../Unix/install-sh .
13 nigel 1.9 cp -pr ../../INSTALL INSTALL.txt
14     cp -pr ../../README README.txt
15 nigel 1.2
16 nigel 1.5 #
17     # This is how I generated the button images:
18     #
19     #T=/System/Library/CoreServices/loginwindow.app/Resources
20     #tiffutil -cat $T/resetH.tif -out English.lproj/MainMenu.nib/resetH.tiff
21     #tiffutil -cat $T/resetN.tif -out English.lproj/MainMenu.nib/resetN.tiff
22     #tiffutil -cat $T/shutdownH.tif -out English.lproj/MainMenu.nib/shutdownH.tiff
23     #tiffutil -cat $T/shutdownN.tif -out English.lproj/MainMenu.nib/shutdownN.tiff
24     #unset T
25 nigel 1.4
26     #
27     # Generate ./configure from configure.in
28     #
29 nigel 1.1 autoconf
30 nigel 1.2
31 nigel 1.4 #
32     # Generate config.h.in from configure.in
33     #
34 nigel 1.3 autoheader
35    
36 nigel 1.2 if test -z "$*"; then
37 nigel 1.3 echo "*************************************************"
38     echo "I am going to run ./configure with no arguments -"
39     echo " if you wish to pass any to it, please specify"
40     echo " them on the $0 command line."
41     echo "*************************************************"
42 nigel 1.2 fi
43    
44     ./configure "$@"