@@ -0,0 +1,15 @@
# Makefile for the C-based VM project
CC = gcc
CFLAGS = -std=c11 -Wall -Wextra -Iinclude
TARGET = vm
SOURCES = src/*.c
all: $(TARGET)
$(TARGET):
$(CC) $(CFLAGS) -o $(TARGET) $(SOURCES)
clean:
rm -f $(TARGET)
The note is not visible to the blocked user.