2024-02-06 22:05:54 -05:00

10 lines
173 B
Makefile

all: helloworld.o
helloworld.o: helloworld.asm
nasm -f elf32 -g helloworld.asm
ld -melf_i386 -g helloworld.o -o helloworld.out
clean:
rm helloworld.o helloworld.out