diff options
author | Preston Pan <preston@nullring.xyz> | 2023-01-06 15:48:46 -0800 |
---|---|---|
committer | Preston Pan <preston@nullring.xyz> | 2023-01-06 15:48:46 -0800 |
commit | f32cb9a129ebf1755ea300cf311f487c5b9f0f04 (patch) | |
tree | 77865e1aa41a6c306a6479448147e3320c3e6578 /Makefile | |
parent | bbbc9f428b7226f1ddac1a78af63e71a96c0b90f (diff) |
fully operational evaluator; makefile changed
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1,7 +1,7 @@ CC = gcc CFLAGS = -g -Wall -nxs: +nxs: src/ast.c src/hash_table.c src/lexer.c src/macros.c src/main.c src/parser.c src/print.c src/stack.c src/token.c src/visitor.c cc src/*.c $(CFLAGS) -o nxs clean: |