Diff for /loncom/homework/caparesponse/commands between versions 1.1 and 1.12

version 1.1, 2000/09/11 21:20:06 version 1.12, 2002/05/04 17:57:01
Line 1 Line 1
 make -f Makefile clean  CAPADIR=../../../CAPA
 mkdir -f capaFunctions  
 cp $(CAPADIR)/pProj/Linux/*.o capaFunctions  if test -f /etc/redhat-release
 swig -perl5 caparesponse.i   then
 cp Makefile.pl Makefile.PL   if rpm -q swig
    then
    echo "Swig found.  Assuming it works..."
    else
    echo "ERROR ERROR: Swig must exist but doesn't!!!"
    echo "To get swig, go to"
    echo "http://install.lon-capa.org/3.1/SupplementalRPMS"
    echo "Install this RPM, swig-1.1p5-3.i386.rpm"
    exit 1
    fi
    if test -e /usr/include/asm
    then
    echo ""
    else
    echo "ERROR. You are missing a necessary symbolic link."
    echo "You should type, as superuser, a command like this:"
                   echo "   ln -s /usr/src/linux/include/asm /usr/include/asm"
    exit 1
    fi
    if test -e /usr/include/linux
    then
    echo ""
    else
    echo "ERROR. You are missing a necessary symbolic link."
    echo "You should type, as superuser, a command like this:"
                   echo "   ln -s /usr/src/linux/include/linux /usr/include/linux"
    exit 1
    fi
   fi
   if test -f Makefile
   then
    make -f Makefile clean
   fi
   mkdir capaFunctions
   path=`pwd`
   cd $CAPADIR/pProj
   make ARCH=LONCAPA libcapa
   cd $path
   cp $CAPADIR/pProj/LONCAPA/*.o capaFunctions
   swig -perl5 capa.i 
   cp Makefile.PL Makefile.pl
 perl Makefile.PL   perl Makefile.PL 
 make -f Makefile   make -f Makefile 
 cp blib/arch/auto/caparesponse/caparesponse.so .   
 perl caparesponse.pm       
   
   cp blib/arch/auto/capa/capa.so . 
   perl capa.pm     

Removed from v.1.1  
changed lines
  Added in v.1.12


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>