summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorPreston Pan <preston@nullring.xyz>2023-01-06 15:48:46 -0800
committerPreston Pan <preston@nullring.xyz>2023-01-06 15:48:46 -0800
commitf32cb9a129ebf1755ea300cf311f487c5b9f0f04 (patch)
tree77865e1aa41a6c306a6479448147e3320c3e6578 /Makefile
parentbbbc9f428b7226f1ddac1a78af63e71a96c0b90f (diff)
fully operational evaluator; makefile changed
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index d49039e..ce5ad74 100644
--- a/Makefile
+++ b/Makefile
@@ -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: