diff options
| author | Sebastiano Tronto <sebastiano@tronto.net> | 2024-10-12 10:21:52 +0200 |
|---|---|---|
| committer | Sebastiano Tronto <sebastiano@tronto.net> | 2024-10-12 10:22:50 +0200 |
| commit | 9b680fadec01789c1fb1317b939c15d186a572c9 (patch) | |
| tree | d9038076657ec3cf887e5fd2bd14f0155ac25b7e /Makefile | |
| parent | c4f64cf2556c0f8597e1fbc19d7c664b8da94612 (diff) | |
| download | nissy-core-9b680fadec01789c1fb1317b939c15d186a572c9.tar.gz nissy-core-9b680fadec01789c1fb1317b939c15d186a572c9.zip | |
Added shelltest
Will add more tests when I feel like it
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 9 |
1 files changed, 6 insertions, 3 deletions
| @@ -30,10 +30,13 @@ debugtool: debugnissy.o | |||
| 30 | 30 | ||
| 31 | shell: nissy.o | 31 | shell: nissy.o |
| 32 | mkdir -p tables | 32 | mkdir -p tables |
| 33 | ${CC} ${MACROS} ${CFLAGS} -o run nissy.o shell.c | 33 | ${CC} ${MACROS} ${CFLAGS} -o run nissy.o shell/shell.c |
| 34 | 34 | ||
| 35 | debugshell: debugnissy.o | 35 | debugshell: debugnissy.o |
| 36 | mkdir -p tables | 36 | mkdir -p tables |
| 37 | ${CC} ${MACROS} ${DBGFLAGS} -o run debugnissy.o shell.c | 37 | ${CC} ${MACROS} ${DBGFLAGS} -o run debugnissy.o shell/shell.c |
| 38 | 38 | ||
| 39 | .PHONY: all clean test tool debugtool shell debugshell | 39 | shelltest: debugshell |
| 40 | ./shell/test.sh | ||
| 41 | |||
| 42 | .PHONY: all clean test tool debugtool shell debugshell shelltest | ||
