summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorubq323 <ubq323@ubq323.website>2023-08-04 22:38:48 +0100
committerubq323 <ubq323@ubq323.website>2023-08-04 22:38:48 +0100
commitf67a3fd05c1b2fe8c749fc2f58287b1b14b011d8 (patch)
tree5566db459c3414ad1c9c18bcc61a21e0ab034f37 /Makefile
parent7c9790d7726e0bb3f44bec15eff7631080d45b03 (diff)
move M to its own file
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 696587b..8d9c882 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,5 @@
-CS=ast.c com.c dis.c prs.c read.c val.c vm.c
-HS=ast.h dis.h prs.h read.h val.h vm.h
+CS=ast.c com.c dis.c mem.c prs.c read.c val.c vm.c
+HS=ast.h dis.h mem.h prs.h read.h val.h vm.h
CFLAGS=-O3 -Wall -Wpedantic -Werror=implicit-function-declaration
bþ: $(CS) $(HS)