Guest User

Untitled

a guest
May 24th, 2018
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. all:
  2. mkdir -p isofs
  3. nasm -g -f bin -l boot.lst -o isofs/boot boot.asm
  4. genisoimage -r -b boot -no-emul-boot -boot-load-size 4 -o boot.iso isofs
  5. # cat ${ASM_FILENAME}.lst
  6.  
  7. clean:
  8. rm -rf isofs boot boot.iso
  9. rm *.o
Add Comment
Please, Sign In to add comment