Blame view

clean_project 272 Bytes
886c558b   Steve Greedy   SACAMOS Public Re...
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
make clean
cd ..