diff options
author | Thomas E. Dickey <dickey@invisible-island.net> | 2000-03-13 00:59:01 -0500 |
---|---|---|
committer | Thomas E. Dickey <dickey@invisible-island.net> | 2000-03-13 00:59:01 -0500 |
commit | d70fdcf7f031566fd582362899099f9fba23a7ac (patch) | |
tree | ce3bd362adcf7db4e41b32bafb52d855cfc097b4 /WWW/BUILD | |
parent | 184855c6f7b9e1727a8f419b475b1fffd9292911 (diff) | |
download | lynx-snapshots-d70fdcf7f031566fd582362899099f9fba23a7ac.tar.gz |
snapshot of project "lynx", label v2-8-3dev_22
Diffstat (limited to 'WWW/BUILD')
-rw-r--r-- | WWW/BUILD | 42 |
1 files changed, 0 insertions, 42 deletions
diff --git a/WWW/BUILD b/WWW/BUILD deleted file mode 100644 index 5fda9e0e..00000000 --- a/WWW/BUILD +++ /dev/null @@ -1,42 +0,0 @@ -#! /bin/csh -# Build all WWW Code for this platform -# -# Figure out what sort of unix this is -# (NeXT machines don't have uname!) - -set UNAME=NeXT -if (-e /usr/bin/uname) set UNAME=`/usr/bin/uname` -if (-e /bin/uname) set UNAME=`/bin/uname` -if (-e /usr/apollo/bin) set UNAME=`ver sys5.3 /bin/uname` -if ( $UNAME == "" ) then - if (-r /NextApps ) set UNAME=next -endif -# -setenv UNAME $UNAME -# For apollo, must use bsd mode. Also, WWW_MACH not inherited through make! -if ($UNAME == "DomainOS") setenv WWW_MACH apollo_m68k -if ($UNAME == next) setenv WWW_MACH next -if ($UNAME == "HP-UX") setenv WWW_MACH snake -if ($UNAME == "IRIX") setenv WWW_MACH sgi -if ($UNAME == "SunOS") setenv WWW_MACH sun4 -if ($UNAME == "ULTRIX") setenv WWW_MACH decstation -if ($UNAME == "AIX") setenv WWW_MACH rs6000 -if ($UNAME == "OSF1") setenv WWW_MACH osf1 - -if ($WWW_MACH == "") then - echo "Please edit BUILD file to include your machine OS" - echo "and mail differences back to www-bug@info.cern.ch - exit -99 -endif -echo "________________________________________________________________" -echo "WWW build for machine type: " $WWW_MACH - -# Now go do build - -# We don't want SHELL set to something funny to screw up make - -(cd All/Implementation; unsetenv SHELL; make) -set stat = $status -echo -echo "WWW build for " $WWW_MACH " done. status = " $stat -exit $stat |