1 |
#!/bin/sh |
2 |
# |
3 |
# $Id: 1_prepare_files.sh,v 1.8 2003/06/03 12:14:45 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/sys_unix.cpp . |
10 |
ln -sf ../Unix/timer_unix.cpp . |
11 |
ln -sf ../Unix/user_strings_unix.h . |
12 |
ln -sf ../Unix/install-sh . |
13 |
cp -pr ../../INSTALL INSTALL.txt |
14 |
cp -pr ../../README README.txt |
15 |
|
16 |
# |
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 |
|
26 |
# |
27 |
# Generate ./configure from configure.in |
28 |
# |
29 |
autoconf |
30 |
|
31 |
# |
32 |
# Generate config.h.in from configure.in |
33 |
# |
34 |
autoheader |
35 |
|
36 |
if test -z "$*"; then |
37 |
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 |
fi |
43 |
|
44 |
./configure "$@" |