add shell and stdin piping support

This commit is contained in:
William Bell
2025-08-18 06:22:13 +01:00
parent 1742a0c52d
commit 0c0832d131
6 changed files with 276 additions and 11 deletions

View File

@@ -6,7 +6,7 @@
BINARY = bin/argon
FLEX_TOOL = flex
CFILES = external/xxhash/xxhash.c external/cwalk/src/cwalk.c external/libdye/src/dye.c $(shell find src -name '*.c')
CFILES = external/xxhash/xxhash.c external/cwalk/src/cwalk.c external/libdye/src/dye.c external/linenoise/linenoise.c $(shell find src -name '*.c')
LEXER_SRC = src/lexer/lex.l
LEXER_C = src/lexer/lex.yy.c