
ASM=nasm

all: forth

forth: kernel.o

%.o: %.asm
	$(ASM) -dPMODE -dLINUX  -f elf  -o $@  $<

