Skip to content
Snippets Groups Projects
update.sh 867 B
Newer Older
  • Learn to ignore specific revisions
  • toole1's avatar
    toole1 committed
    #!/bin/bash
    # Clean monad_dev
    cd ../monad_dev
    make clean
    make
    cd ../monad
    
    # Monad Binary
    
    toole1's avatar
    toole1 committed
    cp ../monad_dev/monad .
    
    toole1's avatar
    toole1 committed
    cp ../monad_dev/.monadid .
    
    toole1's avatar
    toole1 committed
    cp ../monad_dev/valgrind.h .
    cp ../monad_dev/memcheck.h .
    cp ../monad_dev/Makefile.proxy .
    cp ../monad_dev/config.ini .
    cp ../monad_dev/memcheck.h .
    cp ../monad_dev/monad_shared.cpp .
    cp ../monad_dev/monad_shared.h .
    cp ../monad_dev/pipestream.cpp .
    cp ../monad_dev/pipestream.h .
    cp ../monad_dev/proxy.cpp .
    cp ../monad_dev/proxy.h .
    cp ../monad_dev/util.cpp .
    cp ../monad_dev/util.h .
    cp ../monad_dev/valgrind.h .
    
    toole1's avatar
    toole1 committed
    
    # Monad Source
    cp ../monad_dev/Makefile .
    
    toole1's avatar
    toole1 committed
    cp ../monad_dev/LICENSE.txt .
    
    toole1's avatar
    toole1 committed
    cp ../monad_dev/monad.h .
    cp ../monad_dev/monad.cpp .
    
    toole1's avatar
    toole1 committed
    cp ../monad_dev/quotes.txt .
    cp ../monad_dev/random.h .
    cp ../monad_dev/README.txt .
    cp ../monad_dev/README_config.txt .
    cp ../monad_dev/README_tests.txt .
    
    toole1's avatar
    toole1 committed
    cp ../monad_dev/help.cpp .