1
0
mirror of https://github.com/wfjm/w11.git synced 2026-02-15 20:46:31 +00:00
Files
wfjm.w11/tools/bin/rm_dep
Walter F.J. Mueller 16ce5b2091 - interim release w11a_V0.51 (untagged)
- migrate to ibus protocol verion 2
  - nexys2 systems now with DCM derived system clock supported
  - sys_w11a_n2 now runs with 58 MHz clksys
2010-11-27 23:17:50 +00:00

14 lines
434 B
Bash
Executable File

#!/bin/sh
# $Id: rm_dep 284 2010-04-26 20:55:13Z mueller $
#
# Revision History:
# Date Rev Version Comment
# 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_ghdl dep_isim dep_xst dep_ucf_cpp
do
echo "---------- remove *.$ftype ----------------------------------------"
find -name "*.$ftype" | xargs --no-run-if-empty rm -v
done