source: mainline/arch/ia32/Makefile.inc@ 9c0a9b3

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 9c0a9b3 was 9c0a9b3, checked in by Jakub Vana <jakub.vana@…>, 20 years ago

1) memcopy and _memcopy functions rewriten to ANSI C norm.
2) Repaired ia32,ia64 and mips version of SPARTAN to work with this memcopy functions
3) Warning for non declared funcions added and repaired ia32,ia64 and mips versions to pass build process with this warning and Werror option

  • Property mode set to 100644
File size: 947 bytes
RevLine 
[f761f1eb]1CC=gcc
2AS=as
3LD=ld
4
5DEFS:=-DARCH=$(ARCH)
6
7ifdef SMP
8DEFS+=-D$(SMP)
9endif
10
11ifdef HT
12DEFS+=-D$(HT)
13endif
14
15CPPFLAGS=$(DEFS) -nostdinc -I../include
[9c0a9b3]16CFLAGS=$(CPPFLAGS) -nostdlib -fno-builtin -fomit-frame-pointer -Werror-implicit-function-declaration -Wmissing-prototypes -Werror -O3
[f761f1eb]17LFLAGS=-M -no-check-sections -T ../arch/ia32/_link.ld
18
19arch_sources= \
20 arch/context.s \
21 arch/debug/panic.s \
22 arch/cpuid.s \
23 arch/delay.s \
[59532eb]24 arch/asm.S \
[cb4b61d]25 arch/proc/scheduler.c \
[85bfdcc8]26 arch/acpi/acpi.c \
[10a2e22]27 arch/acpi/madt.c \
[dba84ff]28 arch/bios/bios.c \
[f761f1eb]29 arch/smp/ap.S \
30 arch/smp/apic.c \
[ed0dd65]31 arch/smp/mps.c \
32 arch/smp/smp.c \
[e3f41b6]33 arch/atomic.S \
[4ffa9e0]34 arch/smp/ipi.c \
[f761f1eb]35 arch/ia32.c \
36 arch/interrupt.c \
37 arch/pm.c \
38 arch/userspace.c \
39 arch/cpu/cpu.c \
40 arch/mm/frame.c \
[a55f97f]41 arch/mm/memory_init.c \
[f761f1eb]42 arch/mm/page.c \
43 arch/mm/tlb.c \
44 arch/drivers/i8042.c \
45 arch/drivers/i8254.c \
46 arch/drivers/i8259.c \
47 arch/drivers/ega.c \
[0ca6faa]48 arch/boot/boot.S \
[14def1f6]49 arch/boot/memmap.S\
[0ca6faa]50 arch/fpu_context.c
Note: See TracBrowser for help on using the repository browser.