tomsfastmath/genlist.sh

7 lines
331 B
Bash
Raw Normal View History

2007-03-14 18:58:46 +01:00
#!/bin/bash
2019-10-03 16:54:37 +02:00
# SPDX-License-Identifier: Unlicense
2007-03-14 18:58:46 +01:00
export a=`find . -type f | sort | grep "[.]/src" | grep "[.]c" | grep -v generators | sed -e 'sE\./EE' | sed -e 's/\.c/\.o/' | xargs`
perl ./parsenames.pl OBJECTS "$a"
export a=`find . -type f | grep [.]/src | grep [.]h | sed -e 'se\./ee' | xargs`
perl ./parsenames.pl HEADERS "$a"