OpenCores
URL https://opencores.org/ocsvn/s1_core/s1_core/trunk

Subversion Repositories s1_core

[/] [s1_core/] [trunk/] [tools/] [bin/] [clean_env] - Blame information for rev 109

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 7 fafa1971
#!/bin/bash
2
 
3
# This script cleans the environment in order to save disk space,
4
# so that all the remaining stuff can be easily added to a tarfile.
5
# Be careful! It also deletes all the results of simulations and
6
# synthesis, so at the end you will have to recompile everything
7
# (it acts like a "make clean").
8
 
9 109 albert.wat
test_var S1_ROOT
10
find $S1_ROOT -name ".svn" -exec rm -rf {} \;
11 7 fafa1971
find $S1_ROOT -name "*~" -exec rm -rf {} \;
12
find $S1_ROOT -name "#*#" -exec rm -rf {} \;
13
find $S1_ROOT -name "*.bin" -exec rm -rf {} \;
14
 
15
rm -rf $S1_ROOT/run/sim/icarus/*
16
rm -rf $S1_ROOT/run/sim/vcs/*
17
rm -rf $S1_ROOT/run/synth/fpga/*
18
rm -rf $S1_ROOT/run/synth/dc/*
19
rm -rf $S1_ROOT/run/synth/dc/.s*
20
 
21
rm -f $S1_ROOT/*s1*tar.gz
22
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.