minix/kernel/arch/i386/Makefile
Tomas Hruby 8a44a44cb9 Local APIC
- local APIC timer used as the source of time

- PIC is still used as the hw interrupt controller as we don't have
  enough info without ACPI or MPS to set up IO APICs

- remapping of APIC when switching paging on, uses the new mechanism
  to tell VM what phys areas to map in kernel's virtual space

- one more step to SMP

based on code by Arun C.
2009-11-16 21:41:44 +00:00

98 lines
1.7 KiB
Makefile

# Makefile for kernel
include /etc/make.conf
ARCHAR=$(ARCH).a
# objects, excluding first-stage code, which is $(HEAD).
# the HEAD variable is passed as an argument to this Makefile
# by an upper level Makefile.
OBJS= arch_do_vmctl.o \
clock.o \
do_int86.o \
do_iopenable.o \
do_readbios.o \
do_sdevio.o \
exception.o \
i8259.o \
klib386.o \
memory.o \
mpx386.o \
protect.o \
system.o \
apic.o \
apic_asm.o
CPPFLAGS=-Iinclude
CFLAGS=$(CPPFLAGS) -Wall $(CPROFILE)
build: $(HEAD) $(ARCHAR)
$(ARCHAR): $(OBJS)
aal cr $@ $(OBJS)
depend:
mkdep "$(CC) -E $(CPPFLAGS)" *.c *.S > .depend
clean:
rm -f *.a *.o *~ *.tmp *.s
# How to build it
$(ARCHAR)(exception.o): exception.c
$(CC) $(CFLAGS) -c $<
$(ARCHAR)(i8259.o): i8259.c
$(CC) $(CFLAGS) -c $<
$(ARCHAR)(memory.o): memory.c
$(CC) $(CFLAGS) -c $<
$(ARCHAR)(protect.o): protect.c
$(CC) $(CFLAGS) -c $<
$(ARCHAR)(system.o): system.c
$(CC) $(CFLAGS) -c $<
$(ARCHAR)(do_int86.o): do_int86.c
$(CC) $(CFLAGS) -c $<
$(ARCHAR)(do_iopenable.o): do_iopenable.c
$(CC) $(CFLAGS) -c $<
$(ARCHAR)(arch_do_vmctl.o): arch_do_vmctl.c
$(CC) $(CFLAGS) -c $<
$(ARCHAR)(do_readbios.o): do_readbios.c
$(CC) $(CFLAGS) -c $<
$(ARCHAR)(do_sdevio.o): do_sdevio.c
$(CC) $(CFLAGS) -c $<
$(ARCHAR)(clock.o): clock.c
$(CC) $(CFLAGS) -c $<
klib386.o: klib386.S
$(CC) $(CFLAGS) -E -D__ASSEMBLY__ -o $@.tmp $<
gas2ack $@.tmp $@.s
$(CC) $(CFLAGS) -c -o $@ $@.s
mpx386.o: mpx386.S
$(CC) $(CFLAGS) -E -D__ASSEMBLY__ -o $@.tmp $<
gas2ack $@.tmp $@.s
$(CC) $(CFLAGS) -c -o $@ $@.s
apic_asm.o: apic_asm.S
$(CC) $(CFLAGS) -E -D__ASSEMBLY__ -o $@.tmp $<
gas2ack $@.tmp $@.s
$(CC) $(CFLAGS) -c -o $@ $@.s
.c.o:
$(CC) $(CFLAGS) -c -o $@ $<
$(HEAD): mpx386.o
cp $< $@
# Include generated dependencies.
include .depend