hos/rmmod/Makefile

8 lines
103 B
Makefile

NASM=nasm
all:
$(NASM) -f bin rmmod.asm -l rmmod.lst -o rmmod.bin
clean:
-rm -f *~ *.o *.bin *.lst