SimpleOS

LXR

Navigation



Site hébergé par : enix

The LXR Cross Referencer for SOS

source navigation ]
diff markup ]
identifier search ]
general search ]
 
 
Article:1 ] [ 2 ] [ 3 ] [ 4 ] [ 5 ] [ 6 ] [ 6.5 ] [ 7 ] [ 7.5 ] [ 8 ] [ 9 ] [ 9.5 ]

Diff markup

Differences between /Makefile (Article 5) and /Makefile (Article 4)


001 CC=gcc                                            001 CC=gcc
002 CFLAGS  = -Wall -nostdlib -nostdinc -ffreestan    002 CFLAGS  = -Wall -nostdlib -nostdinc -ffreestanding -DKERNEL_SOS
003 LDFLAGS = --warn-common                           003 LDFLAGS = --warn-common
004 OBJECTS = bootstrap/multiboot.o                   004 OBJECTS = bootstrap/multiboot.o                                 \
005           hwcore/idt.o hwcore/gdt.o               005           hwcore/idt.o hwcore/gdt.o                             \
006           hwcore/exception.o hwcore/exception_    006           hwcore/exception.o hwcore/exception_wrappers.o        \
007           hwcore/irq.o hwcore/irq_wrappers.o h    007           hwcore/irq.o hwcore/irq_wrappers.o hwcore/i8259.o     \
008           hwcore/paging.o                         008           hwcore/paging.o                                       \
009           hwcore/i8254.o drivers/x86_videomem.    009           hwcore/i8254.o drivers/x86_videomem.o drivers/bochs.o \
010           sos/kmem_vmm.o sos/kmem_slab.o sos/k << 
011           sos/physmem.o sos/klibc.o sos/main.o    010           sos/physmem.o sos/klibc.o sos/main.o
012                                                   011 
013 KERNEL_OBJ   = sos.elf                            012 KERNEL_OBJ   = sos.elf
014 MULTIBOOT_IMAGE = fd.img                          013 MULTIBOOT_IMAGE = fd.img
015 PWD := $(shell pwd)                               014 PWD := $(shell pwd)
016                                                   015 
017 # Main target                                     016 # Main target
018 all: $(MULTIBOOT_IMAGE)                           017 all: $(MULTIBOOT_IMAGE)
019                                                   018 
020 $(MULTIBOOT_IMAGE): $(KERNEL_OBJ)                 019 $(MULTIBOOT_IMAGE): $(KERNEL_OBJ)
021         ./support/build_image.sh $@ $<            020         ./support/build_image.sh $@ $<
022                                                   021 
023 $(KERNEL_OBJ): $(OBJECTS) ./support/sos.lds       022 $(KERNEL_OBJ): $(OBJECTS) ./support/sos.lds
024         $(LD) $(LDFLAGS) -T ./support/sos.lds     023         $(LD) $(LDFLAGS) -T ./support/sos.lds -o $@ $(OBJECTS)
025         -nm -C $@ | cut -d ' ' -f 1,3 > sos.ma    024         -nm -C $@ | cut -d ' ' -f 1,3 > sos.map
026                                                   025 
027 -include .mkvars                                  026 -include .mkvars
028                                                   027 
029 # Create objects from C source code               028 # Create objects from C source code
030 %.o: %.c                                          029 %.o: %.c
031         $(CC) -I$(PWD) -c $< $(CFLAGS) -o $@      030         $(CC) -I$(PWD) -c $< $(CFLAGS) -o $@
032                                                   031 
033 # Create objects from assembler (.S) source co    032 # Create objects from assembler (.S) source code
034 %.o: %.S                                          033 %.o: %.S
035         $(CC) -I$(PWD) -c $< $(CFLAGS) -DASM_S    034         $(CC) -I$(PWD) -c $< $(CFLAGS) -DASM_SOURCE=1 -o $@
036                                                   035 
037 # Clean directory                                 036 # Clean directory
038 clean:                                            037 clean:
039         $(RM) *.img *.o mtoolsrc *~ menu.txt *    038         $(RM) *.img *.o mtoolsrc *~ menu.txt *.img *.elf *.bin *.map
040         $(RM) *.log *.out bochs*                  039         $(RM) *.log *.out bochs*
041         $(RM) bootstrap/*.o bootstrap/*~          040         $(RM) bootstrap/*.o bootstrap/*~
042         $(RM) drivers/*.o drivers/*~              041         $(RM) drivers/*.o drivers/*~
043         $(RM) hwcore/*.o hwcore/*~                042         $(RM) hwcore/*.o hwcore/*~
044         $(RM) sos/*.o sos/*~                      043         $(RM) sos/*.o sos/*~
045         $(RM) support/*~                          044         $(RM) support/*~
046         $(RM) extra/*~                            045         $(RM) extra/*~
                                                      

source navigation ] diff markup ] identifier search ] general search ]