aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2025-03-28 18:26:45 -0400
committerBruce Hill <bruce@bruce-hill.com>2025-03-28 18:26:45 -0400
commit962514a5cb75b6f9067681e6e7ca96cb933f72c5 (patch)
tree4df6f0634c7d097d193c4a893a4b2d083077ab03
parent093338eb5227aa77b3adfeb66a89a0887f4055a4 (diff)
Fix formatted text
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 86975cad..33055789 100644
--- a/Makefile
+++ b/Makefile
@@ -88,7 +88,7 @@ tags:
test/results/%.tm.testresult: test/%.tm build/tomo
@mkdir -p test/results
- @printf '\x1b[33;1;4m%s\x1b[m\n' $<
+ @printf '\033[33;1;4m%s\033[m\n' $<
@set -o pipefail; \
if ! VERBOSE=0 COLOR=1 LC_ALL=C CC=gcc ./build/tomo -O 1 $< 2>&1 | tee $@; then \
rm -f $@; \
@@ -96,7 +96,7 @@ test/results/%.tm.testresult: test/%.tm build/tomo
fi
test: $(TESTS)
- @printf '\x1b[32;7m ALL TESTS PASSED! \x1b[m\n'
+ @printf '\033[32;7m ALL TESTS PASSED! \033[m\n'
clean:
rm -rf build/* $(COMPILER_OBJS) $(STDLIB_OBJS) test/*.tm.testresult test/.build examples/.build examples/*/.build