mirror of
https://github.com/wfjm/w11.git
synced 2026-02-15 20:46:31 +00:00
- migrate to ibus protocol verion 2 - nexys2 systems now with DCM derived system clock supported - sys_w11a_n2 now runs with 58 MHz clksys
14 lines
434 B
Bash
Executable File
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
|