TCU

A reimplementation of the BSD core utilities written in C.
Log | Files | Refs | README | LICENSE

commit d4747ae74f1eea47c4720822161e1c652a237279
parent 560d6061602bbbf4354de6971b0a5a33f6447f31
Author: Tyler Clark <tyler.clark@foxide.xyz>
Date:   Sun,  9 Feb 2025 21:42:27 -0500

Updating Makefile to include wc

Diffstat:
MMakefile | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/Makefile b/Makefile @@ -19,6 +19,8 @@ seq: $(CC) src/seq.c -o bin/seq true: $(CC) src/true.c -o bin/true +wc: + $(CC) src/wc.c -o bin/wc yes: $(CC) src/yes.c -o bin/yes