njvm/Makefile
2024-01-23 15:41:31 +01:00

13 lines
322 B
Makefile

# Makefile for a simple C program
build:
cd ./bigint; make; cd ..
gcc -g -Wall -Ibigint/build/include -o support.o -c support.c
gcc -g -Wall -Ibigint/build/include -o njvm.o -c njvm.c
gcc -g -Wall -Lbigint/build/lib -o njvm njvm.o support.o -lbigint
run: build
./njvm prog.bin
debug: build
./njvm --debug prog.bin