ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/cebix/BasiliskII/src/MacOSX/1_prepare_files.sh
Revision: 1.13
Committed: 2005-12-29T13:06:12Z (18 years, 7 months ago) by nigel
Content type: application/x-sh
Branch: MAIN
CVS Tags: nigel-build-17
Changes since 1.12: +2 -1 lines
Log Message:
Working EtherNet (SLIRP), minor doco update, semaphore.h needed for Unix src.

File Contents

# User Rev Content
1 nigel 1.2 #!/bin/sh
2 nigel 1.3 #
3 nigel 1.13 # $Id: 1_prepare_files.sh,v 1.12 2005/09/19 07:38:55 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.13 ln -sf ../Unix/semaphore.h .
10 nigel 1.10 cp -pf ../Unix/sys_unix.cpp .
11     cp -pf ../Unix/timer_unix.cpp .
12 nigel 1.3 ln -sf ../Unix/user_strings_unix.h .
13     ln -sf ../Unix/install-sh .
14 nigel 1.10 ln -sf ../Unix/Darwin .
15 nigel 1.9 cp -pr ../../INSTALL INSTALL.txt
16     cp -pr ../../README README.txt
17 nigel 1.2
18 nigel 1.5 #
19     # This is how I generated the button images:
20     #
21     #T=/System/Library/CoreServices/loginwindow.app/Resources
22     #tiffutil -cat $T/resetH.tif -out English.lproj/MainMenu.nib/resetH.tiff
23     #tiffutil -cat $T/resetN.tif -out English.lproj/MainMenu.nib/resetN.tiff
24     #tiffutil -cat $T/shutdownH.tif -out English.lproj/MainMenu.nib/shutdownH.tiff
25     #tiffutil -cat $T/shutdownN.tif -out English.lproj/MainMenu.nib/shutdownN.tiff
26     #unset T
27 nigel 1.4
28     #
29     # Generate ./configure from configure.in
30     #
31 nigel 1.1 autoconf
32 nigel 1.2
33 nigel 1.4 #
34     # Generate config.h.in from configure.in
35     #
36 nigel 1.3 autoheader
37    
38 nigel 1.10 #
39     # Build app which configure uses:
40     #
41    
42    
43 nigel 1.2 if test -z "$*"; then
44 nigel 1.3 echo "*************************************************"
45     echo "I am going to run ./configure with no arguments -"
46     echo " if you wish to pass any to it, please specify"
47     echo " them on the $0 command line."
48     echo "*************************************************"
49 nigel 1.2 fi
50    
51 nigel 1.11 # This mode isn't working yet - segfaults
52 nigel 1.10 #./configure "$@" --enable-addressing=real
53 nigel 1.11
54 nigel 1.12 ./configure "$@"