30 lines
431 B
Bash
Executable File
30 lines
431 B
Bash
Executable File
#!/bin/sh
|
|
#---------------------------------------------------------------------------
|
|
# build SICS from Scratch
|
|
#
|
|
# Mark Koennecke, September 2000
|
|
#--------------------------------------------------------------------------
|
|
|
|
#----- build hardsup
|
|
cd hardsup
|
|
make
|
|
cd ..
|
|
|
|
#------- build tecs
|
|
cd tecs
|
|
make
|
|
cd ..
|
|
|
|
#----- build difrac
|
|
#cd difrac
|
|
#make
|
|
#cd ..
|
|
#
|
|
#---- build matrix
|
|
cd matrix
|
|
make
|
|
cd ..
|
|
|
|
#------- finally build SICS
|
|
make
|