001 OBJCOPY=objcopy
002 LIBGCC := $(shell $(CC) -print-libgcc-file-name)
003 EXTRA := $(shell [ -f ../userland/userprogs.kimg ] && echo ../userland/userprogs.kimg)
004
005 all: sos_qemu.img termslave
006
007 -include ../.mkvars
008
009 # The image is the simple concatenation of the boot sector and the kernel
010 # It may be use in bochs or on a real floppy, but NOT in qemu (see below)
011 sos_bsect.img: bsect.bin sos.bin
012 cat $^ > $@
013 @echo "[31mYou can use the $@ image in bochs or on a real floppy (NOT qemu)[m"
014
015
016
017
018 sos_qemu.img: sos_bsect.img
019
020 cat $< /dev/zero | dd of=$@ bs=1k count=1440
021 @echo "[31mYou can use the $@ image in qemu, bochs, or on a real floppy[m"
022
023
024 bsect.bin: sos_bsect.elf
025 $(OBJCOPY) -v -O binary -j .bootsect $< $@
026
027
028 sos.bin: sos_bsect.elf
029 $(OBJCOPY) -v -O binary -R .bootsect $< $@
030
031
032
033
034 sos_bsect.elf: bootsect.o compile_kernel
035 $(LD) --warn-common -T ./sos_bsect.lds -o $@ \
036 bootsect.o $(wildcard ../hwcore/*.o ../drivers/*.o ../sos/*.o)\
037 $(EXTRA) $(LIBGCC)
038
039 compile_kernel:
040 $(MAKE) -C ..
041
042 termslave: termslave.c
043 cc -Wall -o $@ $<
044
045 clean:
046 $(RM) *.img *.elf *.bin *~ *.o *.out termslave