1Before building slsh, it is wise to first build the slang library and
2install it via, e.g., 'make install-elf'.
3
4On Unix, running 'make install' will put:
5
6    * the slsh executable in $prefix/bin/
7    * lib/slsh.rc in $prefix/etc/
8    * lib/*.sl in $prefix/share/slsh/
9
10(See ../INSTALL.unx for information about $prefix.) To change these
11locations, edit the Makefile.
12
13A mingw32 windows executable may be created using Makefile.g32 via
14
15   make -f Makefile.g32
16   make -f Makefile.g32 install
17
18As above, edit the makefile to change the installation locations.  You
19may also have to put something like:
20
21   set SLSH_PATH=C:/etc
22   set SLSH_CONF_DIR=C:/etc
23
24in your autoexec.bat file and then reboot.
25
26For a windows native slsh.exe use, e.g.,
27
28   ..\src\mkfiles\mkmake WIN32 VC < mkfiles\makefile.all > Makefile
29   nmake
30
31(change the options to mkmake and the 'make' program name to suit your
32development environment).
33
34Good luck.
35