diff options
author | Flavio Cruz <flaviocruz@gmail.com> | 2023-01-25 02:16:10 -0500 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2023-01-26 01:59:24 +0100 |
commit | 248d0c7a784f33c7a682cee038ebcaf33af7cb36 (patch) | |
tree | 65e913788ad56bf5184755b4be20ed39e2b5994c /i386/Makefrag_x86.am | |
parent | b379d5afdf65cce11426ab0349a3778b3fd632f5 (diff) | |
download | gnumach-248d0c7a784f33c7a682cee038ebcaf33af7cb36.tar.gz gnumach-248d0c7a784f33c7a682cee038ebcaf33af7cb36.tar.bz2 gnumach-248d0c7a784f33c7a682cee038ebcaf33af7cb36.zip |
Do not include seg.c when building for x86_64
File was removed in a previous patch for i386.
To avoid future problems, include some common files between i386 and
x86_64 in i386/Makefrag_x86.am. It is also easier to see what is different and
what lacks support for x86_64 (e.g., SMP).
Message-Id: <Y9DXOiP+ClYdj68Z@jupiter.tail36e24.ts.net>
Diffstat (limited to 'i386/Makefrag_x86.am')
-rw-r--r-- | i386/Makefrag_x86.am | 82 |
1 files changed, 82 insertions, 0 deletions
diff --git a/i386/Makefrag_x86.am b/i386/Makefrag_x86.am new file mode 100644 index 00000000..09beef0e --- /dev/null +++ b/i386/Makefrag_x86.am @@ -0,0 +1,82 @@ +# Copyright (C) 2023 Free Software Foundation, Inc. + +# Permission to use, copy, modify and distribute this software and its +# documentation is hereby granted, provided that both the copyright +# notice and this permission notice appear in all copies of the +# software, derivative works or modified versions, and any portions +# thereof, and that both notices appear in supporting documentation. +# +# THE FREE SOFTWARE FOUNDATION ALLOWS FREE USE OF THIS SOFTWARE IN ITS +# "AS IS" CONDITION. THE FREE SOFTWARE FOUNDATION DISCLAIMS ANY +# LIABILITY OF ANY KIND FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE +# USE OF THIS SOFTWARE. + +# Shared files for all x86. + +libkernel_a_SOURCES += \ + i386/i386/ast.h \ + i386/i386/ast_check.c \ + i386/i386/ast_types.h \ + i386/i386/cpu.h \ + i386/i386/cpu_number.h \ + i386/i386/db_disasm.c \ + i386/i386/db_interface.c \ + i386/i386/db_interface.h \ + i386/i386/db_machdep.h \ + i386/i386/db_trace.c \ + i386/i386/db_trace.h \ + i386/i386/debug.h \ + i386/i386/debug_i386.c \ + i386/i386/eflags.h \ + i386/i386/fpu.c \ + i386/i386/fpu.h \ + i386/i386/gdt.c \ + i386/i386/gdt.h \ + i386/i386/idt-gen.h \ + i386/i386/idt.c \ + i386/i386/io_perm.c \ + i386/i386/io_perm.h \ + i386/i386/ipl.h \ + i386/i386/ktss.c \ + i386/i386/ktss.h \ + i386/i386/kttd_interface.c \ + i386/i386/kttd_machdep.h \ + i386/i386/ldt.c \ + i386/i386/ldt.h \ + i386/i386/lock.h \ + i386/i386/locore.h \ + i386/i386/loose_ends.c \ + i386/i386/loose_ends.h \ + i386/i386/mach_param.h \ + i386/i386/machine_routines.h \ + i386/i386/machine_task.c \ + i386/i386/machspl.h \ + i386/i386/model_dep.h \ + i386/i386/mp_desc.c \ + i386/i386/mp_desc.h \ + i386/i386/pcb.c \ + i386/i386/pcb.h \ + i386/i386/phys.c \ + i386/i386/pio.h \ + i386/i386/pmap.h \ + i386/i386/proc_reg.h \ + i386/i386/sched_param.h \ + i386/i386/seg.h \ + i386/i386/setjmp.h \ + i386/i386/spl.h \ + i386/i386/strings.c \ + i386/i386/task.h \ + i386/i386/thread.h \ + i386/i386/time_stamp.h \ + i386/i386/trap.c \ + i386/i386/trap.h \ + i386/i386/tss.h \ + i386/i386/user_ldt.c \ + i386/i386/user_ldt.h \ + i386/i386/vm_param.h \ + i386/i386/xpr.h \ + i386/intel/pmap.c \ + i386/intel/pmap.h \ + i386/intel/read_fault.c \ + i386/intel/read_fault.h + |