lama_byterun/byterun/Makefile
2024-11-02 01:19:54 +03:00

7 lines
290 B
Makefile

FLAGS=-m32 -g2 -fstack-protector-all
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