Changeset 45 for trunk/Makefile.x86


Ignore:
Timestamp:
Jun 23, 2017, 11:55:08 AM (7 years ago)
Author:
max@…
Message:

Add some code for LAPIC; far from complete, but a good start.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Makefile.x86

    r36 r45  
    6363              build/kernel/hal/hal_kentry.o       \
    6464              build/kernel/hal/hal_acpi.o         \
     65              build/kernel/hal/hal_lapic.o        \
    6566              build/kernel/hal/x86_printf.o       \
    6667              build/kernel/hal/hal_special.o      \
     
    307308        $(DU) -D $@ > $@.txt
    308309
    309 build/kernel/hal/hal_init.o:    hal/x86_64/hal_init.c \
    310                                 hal/x86_64/hal_boot.h        \
    311                                 hal/x86_64/hal_multiboot.h   \
     310build/kernel/hal/hal_init.o:    hal/x86_64/hal_init.c         \
     311                                hal/x86_64/hal_boot.h         \
     312                                hal/x86_64/hal_multiboot.h    \
    312313                                hal/x86_64/hal_segmentation.h \
    313                                 kernel_config.h              \
     314                                hal/x86_64/hal_acpi.h         \
     315                                hal/x86_64/hal_lapic.h        \
     316                                hal/x86_64/hal_internal.h     \
     317                                kernel_config.h               \
    314318                                hal/x86_64/hal_types.h
    315319        $(CC) $(KERNEL_INCLUDE) $(CFLAGS) -c -o $@ $<
     
    342346build/kernel/hal/hal_acpi.o:    hal/x86_64/hal_acpi.c        \
    343347                                hal/x86_64/hal_acpi.h        \
     348                                kernel_config.h              \
     349                                hal/x86_64/hal_types.h
     350        $(CC) $(KERNEL_INCLUDE) $(CFLAGS) -c -o $@ $<
     351        $(DU) -D $@ > $@.txt
     352
     353build/kernel/hal/hal_lapic.o:   hal/x86_64/hal_lapic.c       \
     354                                hal/x86_64/hal_lapic.h       \
    344355                                kernel_config.h              \
    345356                                hal/x86_64/hal_types.h
Note: See TracChangeset for help on using the changeset viewer.