summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorSadeep Madurange <sadeep@asciimx.com>2026-03-10 17:40:58 +0800
committerSadeep Madurange <sadeep@asciimx.com>2026-03-10 17:40:58 +0800
commite0500692be6a8775c0a3c83984fc48d445a5f1d8 (patch)
treeb669a7072d375acd72905edc2520f4fe87dfa364 /Makefile
parent0afd55f721a878ad1104f4343114355778eaa058 (diff)
downloadcvn-e0500692be6a8775c0a3c83984fc48d445a5f1d8.tar.gz
Move memory and stack to own files and sort before hash.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 9104cae..0d0f616 100644
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,7 @@
CC = cc
TARGET = cvn
-SRC = main.c
+SRC = main.c mem.c stack.c
OBJ = $(SRC:.c=.o)
CFLAGS = -std=c99 -O3 -Wall -I/usr/local/include