RM = rm
FASM = fasm
KPACK = kpack
all:
@$(FASM) nvme.asm
@$(KPACK) nvme.sys
.PHONY: all
clean:
@$(RM) ./*.sys
.PHONY: clean