Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
e49293de
Commit
e49293de
authored
Sep 22, 2002
by
Kai Germaschewski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kbuild: arch/arm cleanup / O_TARGET removal
parent
8f60dddc
Changes
21
Hide whitespace changes
Inline
Side-by-side
Showing
21 changed files
with
8 additions
and
113 deletions
+8
-113
arch/arm/Makefile
arch/arm/Makefile
+8
-18
arch/arm/kernel/Makefile
arch/arm/kernel/Makefile
+0
-2
arch/arm/mach-adifcc/Makefile
arch/arm/mach-adifcc/Makefile
+0
-5
arch/arm/mach-anakin/Makefile
arch/arm/mach-anakin/Makefile
+0
-5
arch/arm/mach-arc/Makefile
arch/arm/mach-arc/Makefile
+0
-2
arch/arm/mach-clps711x/Makefile
arch/arm/mach-clps711x/Makefile
+0
-5
arch/arm/mach-clps7500/Makefile
arch/arm/mach-clps7500/Makefile
+0
-5
arch/arm/mach-ebsa110/Makefile
arch/arm/mach-ebsa110/Makefile
+0
-5
arch/arm/mach-epxa10db/Makefile
arch/arm/mach-epxa10db/Makefile
+0
-5
arch/arm/mach-footbridge/Makefile
arch/arm/mach-footbridge/Makefile
+0
-5
arch/arm/mach-ftvpci/Makefile
arch/arm/mach-ftvpci/Makefile
+0
-5
arch/arm/mach-integrator/Makefile
arch/arm/mach-integrator/Makefile
+0
-5
arch/arm/mach-iop310/Makefile
arch/arm/mach-iop310/Makefile
+0
-5
arch/arm/mach-l7200/Makefile
arch/arm/mach-l7200/Makefile
+0
-5
arch/arm/mach-pxa/Makefile
arch/arm/mach-pxa/Makefile
+0
-10
arch/arm/mach-rpc/Makefile
arch/arm/mach-rpc/Makefile
+0
-5
arch/arm/mach-sa1100/Makefile
arch/arm/mach-sa1100/Makefile
+0
-2
arch/arm/mach-shark/Makefile
arch/arm/mach-shark/Makefile
+0
-5
arch/arm/mach-tbox/Makefile
arch/arm/mach-tbox/Makefile
+0
-5
arch/arm/mm/Makefile
arch/arm/mm/Makefile
+0
-7
arch/arm/nwfpe/Makefile
arch/arm/nwfpe/Makefile
+0
-2
No files found.
arch/arm/Makefile
View file @
e49293de
...
...
@@ -165,29 +165,19 @@ endif
# Do we have FASTFPE?
FASTFPE
:=
arch
/arm/fastfpe
ifeq
($(FASTFPE),$(wildcard $(FASTFPE)))
SUBDIRS
+=
$(FASTFPE)
FASTFPE_OBJ
:=
$(FASTFPE)
/fast-math-emu.o
FASTFPE_OBJ
:=
$(FASTFPE)
/
endif
# If we have a machine-specific directory, then include it in the build.
SUBDIRS
+=
arch
/arm/mach-
$(MACHINE)
\
arch
/arm/kernel
arch
/arm/mm
arch
/arm/lib
arch
/arm/nwfpe
CORE_FILES
:=
arch
/arm/mach-
$(MACHINE)
/
$(MACHINE)
.o
\
arch
/arm/kernel/kernel.o
arch
/arm/mm/mm.o
$(CORE_FILES)
LIBS
:=
arch
/arm/lib/lib.a
$(LIBS)
ifeq
($(CONFIG_FPE_NWFPE),y)
LIBS
:=
arch
/arm/nwfpe/math-emu.o
$(LIBS)
endif
core-y
+=
arch
/arm/mach-
$(MACHINE)
/
\
arch
/arm/kernel/
arch
/arm/mm/
core-$(CONFIG_FPE_NWFPE)
+=
arch
/arm/nwfpe/
core-$(CONFIG_FPE_FASTFPE)
+=
$(FASTFPE_OBJ)
ifeq
($(CONFIG_FPE_FASTFPE),y)
LIBS
:=
$(FASTFPE_OBJ)
$(LIBS)
endif
drivers-$(CONFIG_ARCH_CLPS7500)
+=
drivers/acorn/char/
drivers-$(CONFIG_ARCH_L7200))
+=
drivers/acorn/char/
ifeq
($(findstring y,$(CONFIG_ARCH_CLPS7500) $(CONFIG_ARCH_L7200)),y)
SUBDIRS
+=
drivers/acorn/char
DRIVERS
+=
drivers/acorn/char/built-in.o
endif
libs-y
+=
arch
/arm/lib/
MAKEBOOT
=
$(MAKE)
-C
arch
/
$(ARCH)
/boot
MAKETOOLS
=
$(MAKE)
-C
arch
/
$(ARCH)
/tools
...
...
arch/arm/kernel/Makefile
View file @
e49293de
...
...
@@ -2,8 +2,6 @@
# Makefile for the linux kernel.
#
O_TARGET
:=
kernel.o
ENTRY_OBJ
=
entry-
$(PROCESSOR)
.o
AFLAGS_head.o
:=
-DTEXTADDR
=
$(TEXTADDR)
...
...
arch/arm/mach-adifcc/Makefile
View file @
e49293de
#
# Makefile for the linux kernel.
#
# Note! Dependencies are done automagically by 'make dep', which also
# removes any old dependencies. DON'T put your own dependencies here
# unless it's something special (ie not a .c file).
O_TARGET
:=
adifcc.o
# Object file lists.
...
...
arch/arm/mach-anakin/Makefile
View file @
e49293de
#
# Makefile for the linux kernel.
#
# Note! Dependencies are done automagically by 'make dep', which also
# removes any old dependencies. DON'T put your own dependencies here
# unless it's something special (ie not a .c file).
O_TARGET
:=
anakin.o
# Object file lists.
...
...
arch/arm/mach-arc/Makefile
View file @
e49293de
...
...
@@ -2,8 +2,6 @@
# Makefile for the linux kernel.
#
O_TARGET
:=
arc.o
# Object file lists.
obj-y
:=
arch.o dma.o fault.o irq.o mm.o oldlatches.o
\
...
...
arch/arm/mach-clps711x/Makefile
View file @
e49293de
#
# Makefile for the linux kernel.
#
# Note! Dependencies are done automagically by 'make dep', which also
# removes any old dependencies. DON'T put your own dependencies here
# unless it's something special (ie not a .c file).
O_TARGET
:=
clps711x.o
# Object file lists.
...
...
arch/arm/mach-clps7500/Makefile
View file @
e49293de
#
# Makefile for the linux kernel.
#
# Note! Dependencies are done automagically by 'make dep', which also
# removes any old dependencies. DON'T put your own dependencies here
# unless it's something special (ie not a .c file).
O_TARGET
:=
clps7500.o
# Object file lists.
...
...
arch/arm/mach-ebsa110/Makefile
View file @
e49293de
#
# Makefile for the linux kernel.
#
# Note! Dependencies are done automagically by 'make dep', which also
# removes any old dependencies. DON'T put your own dependencies here
# unless it's something special (ie not a .c file).
O_TARGET
:=
ebsa110.o
# Object file lists.
...
...
arch/arm/mach-epxa10db/Makefile
View file @
e49293de
#
# Makefile for the linux kernel.
#
# Note! Dependencies are done automagically by 'make dep', which also
# removes any old dependencies. DON'T put your own dependencies here
# unless it's something special (ie not a .c file).
O_TARGET
:=
epxa10db.o
# Object file lists.
...
...
arch/arm/mach-footbridge/Makefile
View file @
e49293de
#
# Makefile for the linux kernel.
#
# Note! Dependencies are done automagically by 'make dep', which also
# removes any old dependencies. DON'T put your own dependencies here
# unless it's something special (ie not a .c file).
O_TARGET
:=
footbridge.o
# Object file lists.
...
...
arch/arm/mach-ftvpci/Makefile
View file @
e49293de
#
# Makefile for the linux kernel.
#
# Note! Dependencies are done automagically by 'make dep', which also
# removes any old dependencies. DON'T put your own dependencies here
# unless it's something special (ie not a .c file).
O_TARGET
:=
ftvpci.o
# Object file lists.
...
...
arch/arm/mach-integrator/Makefile
View file @
e49293de
#
# Makefile for the linux kernel.
#
# Note! Dependencies are done automagically by 'make dep', which also
# removes any old dependencies. DON'T put your own dependencies here
# unless it's something special (ie not a .c file).
O_TARGET
:=
integrator.o
# Object file lists.
...
...
arch/arm/mach-iop310/Makefile
View file @
e49293de
#
# Makefile for the linux kernel.
#
# Note! Dependencies are done automagically by 'make dep', which also
# removes any old dependencies. DON'T put your own dependencies here
# unless it's something special (ie not a .c file).
O_TARGET
:=
iop310.o
# Object file lists.
...
...
arch/arm/mach-l7200/Makefile
View file @
e49293de
#
# Makefile for the linux kernel.
#
# Note! Dependencies are done automagically by 'make dep', which also
# removes any old dependencies. DON'T put your own dependencies here
# unless it's something special (ie not a .c file).
O_TARGET
:=
l7200.o
# Object file lists.
...
...
arch/arm/mach-pxa/Makefile
View file @
e49293de
#
# Makefile for the linux kernel.
#
# Note! Dependencies are done automagically by 'make dep', which also
# removes any old dependencies. DON'T put your own dependencies here
# unless it's something special (ie not a .c file).
O_TARGET
:=
pxa.o
obj-y
:=
obj-m
:=
obj-n
:=
obj-
:=
export-objs
:=
generic.o irq.o dma.o sa1111.o
...
...
arch/arm/mach-rpc/Makefile
View file @
e49293de
#
# Makefile for the linux kernel.
#
# Note! Dependencies are done automagically by 'make dep', which also
# removes any old dependencies. DON'T put your own dependencies here
# unless it's something special (ie not a .c file).
O_TARGET
:=
rpc.o
# Object file lists.
...
...
arch/arm/mach-sa1100/Makefile
View file @
e49293de
...
...
@@ -2,8 +2,6 @@
# Makefile for the linux kernel.
#
O_TARGET
:=
sa1100.o
# Common support (must be linked before board specific support)
obj-y
:=
generic.o irq.o dma.o
obj-m
:=
...
...
arch/arm/mach-shark/Makefile
View file @
e49293de
#
# Makefile for the linux kernel.
#
# Note! Dependencies are done automagically by 'make dep', which also
# removes any old dependencies. DON'T put your own dependencies here
# unless it's something special (ie not a .c file).
O_TARGET
:=
shark.o
# Object file lists.
...
...
arch/arm/mach-tbox/Makefile
View file @
e49293de
#
# Makefile for the linux kernel.
#
# Note! Dependencies are done automagically by 'make dep', which also
# removes any old dependencies. DON'T put your own dependencies here
# unless it's something special (ie not a .c file).
O_TARGET
:=
tbox.o
# Object file lists.
...
...
arch/arm/mm/Makefile
View file @
e49293de
#
# Makefile for the linux arm-specific parts of the memory manager.
#
# Note! Dependencies are done automagically by 'make dep', which also
# removes any old dependencies. DON'T put your own dependencies here
# unless it's something special (ie not a .c file).
#
# Note 2! The CFLAGS definition is now in the main makefile...
O_TARGET
:=
mm.o
# Object file lists.
...
...
arch/arm/nwfpe/Makefile
View file @
e49293de
...
...
@@ -2,8 +2,6 @@
# Copyright (C) 1998, 1999, 2001 Philip Blundell
#
O_TARGET
:=
math-emu.o
obj-y
:=
obj-m
:=
obj-n
:=
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment