seb15753

boot/Makefile

Jun 24th, 2014
276
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.13 KB | None | 0 0
  1. #a.michelizza.free.fr
  2. OBJ=bootsect
  3.  
  4. all: $(OBJ)
  5.  
  6. bootsect: bootsect.asm
  7.     nasm -f bin -o $@ $^ ;
  8.  
  9. clean:
  10.     rm -f $(OBJ) *.o
Advertisement
Add Comment
Please, Sign In to add comment