From 9e555bc2bf618148929e52ccd0efdb1b752bdcac Mon Sep 17 00:00:00 2001 From: ubq323 Date: Tue, 1 Aug 2023 22:37:26 +0100 Subject: compilation of basic arithmetic exprs to bytecode --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 53062a0..0160897 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ -CS=parser.c ast.c run.c read.c ht.c -HS=parser.h ast.h run.h read.h ht.h +CS=ast.c com.c dis.c parser.c read.c val.c vm.c +HS=ast.h dis.h parser.h read.h val.h vm.h CFLAGS=-O3 -Wall -Wpedantic -Werror=implicit-function-declaration badthing: $(CS) $(HS) -- cgit v1.2.3