Hi,
Could you help me set the correct directory in makefile? Or should I better use Linux?
Makefile:
### Install directory
INSTALL_DIR = ../bin
I try to use
C:/StaMPS/StaMPS_v3.3b1/bin; /cygdrive/c/StaMPS/StaMPS_v3.3b1/bin
/usr/bin/make definstall;
make[1]: Entering directory `/c/StaMPS/StaMPS_v3.3b1/src'
dir=../bin; \
if test ! -d $dir; then \
echo "Sorry, dir ../bin does not exist, exiting..."; exit; fi; \
echo Installing in directory: $dir; \
list='selsbc_patch_new calamp selpsc_patch selsbc_patch cpxsum pscphase psclonlat pscdem '; for p in $list; do \
echo "Installing (copy): $p"; \
cp -f $p ../bin/$p; \
done
Installing in directory: ../bin
Thanks you very much