Blame view

clean_project 280 Bytes
44c11f06   Chris Smartt   Include software ...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# Script to clean object files, mod files and 
# all temporary test case files before updating 
# the git repository.

cd SRC 
make clean
rm -f compilation_date.inc 
cd ..
#
cd TEST_CASES
./generate_spice_cable_bundle_model clean_all
cd ..
#
cd DOCUMENTATION
9f62fb99   Chris Smartt   Corrections to Us...
15
make clean_all
44c11f06   Chris Smartt   Include software ...
16
cd ..