- added GetSoftVar to scan module. - Made sps moddule give up only after three tries to get command through - Added build script
25 lines
386 B
Bash
Executable File
25 lines
386 B
Bash
Executable File
#!/bin/sh
|
|
#---------------------------------------------------------------------------
|
|
# build SICS from Scratch
|
|
#
|
|
# Mark Koennecke, September 2000
|
|
#--------------------------------------------------------------------------
|
|
|
|
#------- build tecs
|
|
cd tecs
|
|
make
|
|
cd ..
|
|
|
|
#----- build hardsup
|
|
cd hardsup
|
|
make
|
|
cd ..
|
|
|
|
#----- build difrac
|
|
cd difrac
|
|
make
|
|
cd ..
|
|
|
|
#------- finally build SICS
|
|
make
|