diff options
author | Rob Landley <rob@landley.net> | 2016-02-07 19:09:39 -0600 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2016-02-07 19:09:39 -0600 |
commit | 9b14cb6aa57c56080bbbc0db85027c3f834fb06f (patch) | |
tree | 68b6d0927bb4f3c49e2557468e535cb85a587cc1 /scripts | |
parent | 712e43ef7c92e8903e6f9d7ca261a420c566d299 (diff) | |
download | toybox-9b14cb6aa57c56080bbbc0db85027c3f834fb06f.tar.gz |
Dependencies for "make COMMAND"
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/genconfig.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/genconfig.sh b/scripts/genconfig.sh index 7b34f085..e53d3607 100755 --- a/scripts/genconfig.sh +++ b/scripts/genconfig.sh @@ -134,7 +134,7 @@ while IFS=":" read FILE NAME do [ "$NAME" == help ] && continue [ "$NAME" == install ] && continue - echo -e "$NAME:\n\tscripts/single.sh $NAME\n" + echo -e "$NAME: $FILE *.[ch] lib/*.[ch]\n\tscripts/single.sh $NAME\n" [ "${FILE/pending//}" != "$FILE" ] && PENDING="$PENDING $NAME" || WORKING="$WORKING $NAME" |