Remove bytecomp stuff (for now)

This commit is contained in:
2026-01-28 14:29:01 -08:00
parent 05bcb77f24
commit de43dfcda2
7 changed files with 1 additions and 337 deletions

View File

@ -19,7 +19,7 @@ CFLAGS=$(DEBUG_CFLAGS) $(LLVM_SAN_FLAGS) -std=c11 -Wall -Wpedantic $\
LD=gcc
LDFLAGS=$(LLVM_SAN_FLAGS)
SRCS:=$(wildcard src/*.c) $(wildcard src/byterun/*.c)
SRCS:=$(wildcard src/*.c)
OBJS:=$(SRCS:src/%.c=bin/%.o)
DEPS:=$(SRCS:src/%.c=bin/deps/%.d)