Added some instructions for cmp

This commit is contained in:
nilspolek
2024-01-23 15:41:31 +01:00
parent eba9656631
commit 3a046d6f89
2 changed files with 4 additions and 1 deletions

View File

@@ -1,5 +1,6 @@
# 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