Files
imp/scripts/list-source-files.sh

7 lines
159 B
Bash
Executable File

#!/bin/sh
find . \
-not \( -path './.git' -prune \) \
-not \( -path './build' -prune \) \
-not \( -path './dep' -prune \) \
-name '*.c' -o -name '*.h'