clean_project
338 Bytes
# 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_all
cd ..
#
cd PROXIMITY_EFFECT_TEST_CASES
./clean_test_cases
cd ..