13 lines
349 B
Makefile
13 lines
349 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 --heap 100000 --stack 1000 prog.bin
|