Commit e1053c88ff4002150ad634c4662532f36f51f73b

Authored by Benjamin Renard
1 parent 34e01dc5

Create symbolic links to cspice library

Showing 2 changed files with 7 additions and 1 deletions   Show diff stats
.gitignore
1 1 netcdf/tmp/
  2 +cspice/cspice/
... ...
cspice/buildAndInstall.sh
... ... @@ -9,7 +9,12 @@ cd cspice
9 9  
10 10 ./makeall.csh
11 11  
12   -sudo cp lib/* $INSTALL_DIR/lib/
  12 +sudo mkdir $INSTALL_DIR/lib/cspice
  13 +sudo cp lib/* $INSTALL_DIR/lib/cspice/
  14 +sudo ln -s $INSTALL_DIR/lib/cspice/cspice.a $INSTALL_DIR/lib/libcspice.a
  15 +sudo ln -s $INSTALL_DIR/lib/cspice/csupport.a $INSTALL_DIR/lib/libcsupport.a
  16 +
13 17 sudo cp exe/* $INSTALL_DIR/bin/
  18 +
14 19 sudo mkdir $INSTALL_DIR/include/cspice
15 20 sudo cp include/* $INSTALL_DIR/include/cspice/
... ...