URL
https://opencores.org/ocsvn/m1_core/m1_core/trunk
Subversion Repositories m1_core
[/] [m1_core/] [trunk/] [tools/] [bin/] [make_clean] - Rev 64
Go to most recent revision | Compare with Previous | Blame | View Log
#!/bin/bash
if [ -z "$M1_ROOT" ]; then echo "***ERROR***: M1_ROOT variable is undefined, please set it and run 'source sourceme'."; exit 1; fi
if ! [ -d "$M1_ROOT" ]; then echo "***ERROR***: directory '$M1_ROOT' does not exist, please check it and run 'source sourceme' again."; exit 1; fi
rm -rf $M1_ROOT/run
mkdir $M1_ROOT/run
mkdir $M1_ROOT/run/sim
mkdir $M1_ROOT/run/sim/icarus
mkdir $M1_ROOT/run/synth
mkdir $M1_ROOT/run/synth/dc
mkdir $M1_ROOT/run/synth/xst
find $M1_ROOT -name "*~" -exec rm {} \;
Go to most recent revision | Compare with Previous | Blame | View Log