mirror of
https://github.com/wfjm/w11.git
synced 2026-01-23 19:36:31 +00:00
- tools/src/... - tools/tcl/... - tools/dox - tools/make - add rlink test system - rtl/sys_gen/tst_rlink/nexys2/...
15 lines
492 B
Bash
Executable File
15 lines
492 B
Bash
Executable File
#!/bin/sh
|
|
# $Id: rm_dep 354 2011-01-09 22:38:53Z mueller $
|
|
#
|
|
# Revision History:
|
|
# Date Rev Version Comment
|
|
# 2011-01-09 354 1.1.1 add *.dep for cpp depends
|
|
# 2010-04-26 284 1.1 add xargs -r to prevent rm errors on empty lists
|
|
# 2010-04-24 282 1.0 Initial version
|
|
#
|
|
for ftype in dep dep_ghdl dep_isim dep_xst dep_ucf_cpp
|
|
do
|
|
echo "---------- remove *.$ftype ----------------------------------------"
|
|
find -name "*.$ftype" | xargs --no-run-if-empty rm -v
|
|
done
|