From f32cb9a129ebf1755ea300cf311f487c5b9f0f04 Mon Sep 17 00:00:00 2001 From: Preston Pan Date: Fri, 6 Jan 2023 15:48:46 -0800 Subject: fully operational evaluator; makefile changed --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile') 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: -- cgit