From 9b680fadec01789c1fb1317b939c15d186a572c9 Mon Sep 17 00:00:00 2001 From: Sebastiano Tronto Date: Sat, 12 Oct 2024 10:21:52 +0200 Subject: Added shelltest Will add more tests when I feel like it --- Makefile | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index fbf43b1..8e7948e 100644 --- a/Makefile +++ b/Makefile @@ -30,10 +30,13 @@ debugtool: debugnissy.o shell: nissy.o mkdir -p tables - ${CC} ${MACROS} ${CFLAGS} -o run nissy.o shell.c + ${CC} ${MACROS} ${CFLAGS} -o run nissy.o shell/shell.c debugshell: debugnissy.o mkdir -p tables - ${CC} ${MACROS} ${DBGFLAGS} -o run debugnissy.o shell.c + ${CC} ${MACROS} ${DBGFLAGS} -o run debugnissy.o shell/shell.c -.PHONY: all clean test tool debugtool shell debugshell +shelltest: debugshell + ./shell/test.sh + +.PHONY: all clean test tool debugtool shell debugshell shelltest -- cgit v1.3