diff options
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 | ||
