Files
low-level-programming/justfile

10 lines
250 B
Makefile
Raw Normal View History

2022-01-29 21:58:19 -08:00
default:
just --list
run_gamarjoba: build_gamarjoba
./gamarjoba_munde/gamarjoba
build_gamarjoba:
nasm -f elf64 -o gamarjoba_munde/gamarjoba.o gamarjoba_munde/gamarjoba.asm
ld -o gamarjoba_munde/gamarjoba gamarjoba_munde/gamarjoba.o