commit 7c994d0ee99d8b69bf958f1559db3a294f459e3e
parent 9198aede8761d6573f2ec3739b48e86f83947b56
Author: Sebastiano Tronto <sebastiano@tronto.net>
Date: Tue, 15 Oct 2024 20:06:04 +0200
Rename debug shell executable
Diffstat:
3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/Makefile b/Makefile
@@ -15,7 +15,7 @@ debugnissy.o:
${CC} ${MACROS} ${DBGFLAGS} -c -o debugnissy.o src/nissy.c
clean:
- rm -rf *.o *.so run
+ rm -rf *.o *.so run debugrun
test: debugnissy.o
CC="${CC} ${MACROS} ${DBGFLAGS}" OBJ=debugnissy.o ./test/test.sh
@@ -34,7 +34,7 @@ shell: nissy.o
debugshell: debugnissy.o
mkdir -p tables
- ${CC} ${MACROS} ${DBGFLAGS} -o run debugnissy.o shell/shell.c
+ ${CC} ${MACROS} ${DBGFLAGS} -o debugrun debugnissy.o shell/shell.c
shelltest: debugshell
./shell/test.sh
diff --git a/debugrun b/debugrun
Binary files differ.
diff --git a/shell/test.sh b/shell/test.sh
@@ -1,6 +1,6 @@
#!/bin/sh
-SHELLBIN="./run"
+SHELLBIN="./debugrun"
TESTDIR="./shell/testcases"
TESTOUT="shell/lasttest.out"
TESTERR="shell/lasttest.err"