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

# Content
1 #!/bin/sh
2 #
3 # $Id: 1_prepare_files.sh,v 1.12 2005/09/19 07:38:55 nigel Exp $
4 #
5 # Run this to generate all the initial makefiles, etc.
6
7 ln -sf ../Unix/config.guess .
8 ln -sf ../Unix/config.sub .
9 ln -sf ../Unix/semaphore.h .
10 cp -pf ../Unix/sys_unix.cpp .
11 cp -pf ../Unix/timer_unix.cpp .
12 ln -sf ../Unix/user_strings_unix.h .
13 ln -sf ../Unix/install-sh .
14 ln -sf ../Unix/Darwin .
15 cp -pr ../../INSTALL INSTALL.txt
16 cp -pr ../../README README.txt
17
18 #
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
28 #
29 # Generate ./configure from configure.in
30 #
31 autoconf
32
33 #
34 # Generate config.h.in from configure.in
35 #
36 autoheader
37
38 #
39 # Build app which configure uses:
40 #
41
42
43 if test -z "$*"; then
44 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 fi
50
51 # This mode isn't working yet - segfaults
52 #./configure "$@" --enable-addressing=real
53
54 ./configure "$@"