part of operations, migration to 1.30

This commit is contained in:
ProgramSnail 2024-11-02 01:19:54 +03:00
parent 2c03654cca
commit e17f1f70ed
8 changed files with 166 additions and 137 deletions

View file

@ -1,7 +1,7 @@
FLAGS=-m32 -g2 -fstack-protector-all
all: src/cli.c src/parser.c src/interpreter.c src/utils.c src/types.c src/virt_stack.c
$(CC) $(FLAGS) -o byterun -Iinclude/ src/utils.c src/parser.c src/virt_stack.c src/interpreter.c src/cli.c ../runtime/runtime.a
all: src/cli.c src/parser.c src/interpreter.c src/utils.c src/types.c src/stack.c
$(CC) $(FLAGS) -o byterun -Iinclude/ src/cli.c src/parser.c src/interpreter.c src/utils.c src/types.c src/stack.c ../runtime/runtime.a
clean:
$(RM) *.a *.o *~ byterun