Blame view

Makefile 787 Bytes
Imanol-Mikel Barba Sabariego authored
1
TARGETS = boot_floppy.bin boot_usb.bin second_binary.bin
Imanol-Mikel Barba Sabariego authored
2
3
Imanol-Mikel Barba Sabariego authored
4
5
6
7
boot_floppy.bin: boot_floppy.asm floppy.img
	nasm boot_floppy.asm -f bin -o boot_floppy.bin
	dd if=boot_floppy.bin of=floppy.img bs=512 count=1 conv=notrunc
Imanol-Mikel Barba Sabariego authored
8
boot_usb.bin: boot_usb.asm usb.img
Imanol-Mikel Barba Sabariego authored
9
	nasm boot_usb.asm -f bin -o boot_usb.bin
Imanol-Mikel Barba Sabariego authored
10
11
12
13
14
15
16
        dd if=boot_usb.bin of=usb.img bs=512 count=1 conv=notrunc

second_binary.bin: second_binary.asm floppy.img usb.img
	nasm second_binary.asm -f bin -o second_binary.bin
	dd if=second_binary.bin of=floppy.img bs=512 count=1 seek=3 conv=notrunc
        dd if=second_binary.bin of=usb.img bs=512 count=1 seek=3 conv=notrunc
Imanol-Mikel Barba Sabariego authored
17
18
19
20

floppy.img: 
	dd if=/dev/zero of=floppy.img bs=512 count=2880
Imanol-Mikel Barba Sabariego authored
21
22
23
usb.img:
	dd if=/dev/zero of=usb.img bs=512 count=2880
Imanol-Mikel Barba Sabariego authored
24
25
26
27
28
clean:
	rm -rf $(TARGETS)

all: $(TARGETS)