#!/bin/sh #----------------------------------------------------------------------- # Create and install difmap and its libraries. #----------------------------------------------------------------------- # Create difmap and its libraries. echo ' '; echo 'Compiling the PGPLOT C-wrapper library libcpgplot.a'; echo ' ' (cd cpg_src; make) echo ' '; echo 'Compiling a subset of the slalib library libslalib.a'; echo ' ' (cd slalib_src; make) echo ' '; echo 'Compiling the scratch file utils library libscrfil.a'; echo ' ' (cd scrfil_src; make) echo ' '; echo 'Compiling the log I/O library liblogio.a'; echo ' ' (cd logio_src; make) echo ' '; echo 'Compiling the pager interface library libpager.a'; echo ' ' (cd pager_src; make) echo ' '; echo 'Compiling the record I/O interface library librecio.a'; echo ' ' (cd recio_src; make) echo ' '; echo 'Compiling the fits library libfits.a'; echo ' ' (cd fits_src; make) echo ' '; echo 'Compiling the command parser library libsphere.a'; echo ' ' (cd sphere_src; make) echo ' '; echo 'Compiling difmap itself'; echo ' ' (cd difmap_src; make)