Initial commit of newLISP.
[newlisp.git] / configure
blob56891259ed4ff5feb358c4ad613459d5da69adb8
1 #!/bin/sh
2 # this script tries to discover the OS platform and configuration
3 # and then makes newLISP using the appropiate makefile
4 # if this script fails and for other special flavors, like
5 # making shared libraries etc., type:
7 # make help
8 # to see all options
11 echo
12 case `uname` in
13 Darwin)
14 echo Discovered Darwin MacOS X with readline suport, enter:
15 echo " make"
16 echo to make a UTF-8 version for MacOS X with readline support
17 exit
19 Linux)
20 echo Discovered Linux, enter:
21 echo " make"
22 echo to make for linux
23 exit
25 FreeBSD)
26 echo Discovered FreeBSD, enter
27 echo " make"
28 echo to make for FeeBSD
29 exit
31 NetBSD)
32 echo Discoverd NetBSD, enter:
33 echo " make"
34 echo to make for NetBSD
35 exit
37 OpenBSD)
38 echo Discoverd OpenBSD, enter:
39 echo " make"
40 echo to make for OpenBSD
41 exit
43 SunOS)
44 echo Discovered SunOS, enter:
45 echo " make"
46 echo to make for SunOS
47 exit
49 OSF1)
50 echo Discovered True64 Unix, please read doc/TRU64BUILD and enter:
51 echo " make"
52 echo to make for True64 Unix
53 exit
55 MINGW32_NT-5.1)
56 echo Discoverd MINGW32 on NT-5.1, enter:
57 echo " make"
58 echo to make for MinGW32 on Win32
59 exit
61 OS/2)
62 echo Discoverd OS/2
63 echo " make"
64 echo to make for OS/2
65 exit
67 esac
69 echo Could not discover your OS platform use one of the following commands:
71 make help