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
5d88a413
Commit
5d88a413
authored
May 23, 2002
by
Kai Germaschewski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ISDN: Use 'built-in.o' instead of 'vmlinux-obj.o' as O_TARGET
parent
40749377
Changes
15
Hide whitespace changes
Inline
Side-by-side
Showing
15 changed files
with
29 additions
and
34 deletions
+29
-34
drivers/isdn/Makefile
drivers/isdn/Makefile
+13
-14
drivers/isdn/act2000/Makefile
drivers/isdn/act2000/Makefile
+1
-1
drivers/isdn/capi/Makefile
drivers/isdn/capi/Makefile
+1
-1
drivers/isdn/divert/Makefile
drivers/isdn/divert/Makefile
+1
-1
drivers/isdn/eicon/Makefile
drivers/isdn/eicon/Makefile
+1
-1
drivers/isdn/hardware/Makefile
drivers/isdn/hardware/Makefile
+3
-5
drivers/isdn/hardware/avm/Makefile
drivers/isdn/hardware/avm/Makefile
+1
-1
drivers/isdn/hisax/Makefile
drivers/isdn/hisax/Makefile
+1
-1
drivers/isdn/hysdn/Makefile
drivers/isdn/hysdn/Makefile
+1
-1
drivers/isdn/i4l/Makefile
drivers/isdn/i4l/Makefile
+1
-3
drivers/isdn/icn/Makefile
drivers/isdn/icn/Makefile
+1
-1
drivers/isdn/isdnloop/Makefile
drivers/isdn/isdnloop/Makefile
+1
-1
drivers/isdn/pcbit/Makefile
drivers/isdn/pcbit/Makefile
+1
-1
drivers/isdn/sc/Makefile
drivers/isdn/sc/Makefile
+1
-1
drivers/isdn/tpam/Makefile
drivers/isdn/tpam/Makefile
+1
-1
No files found.
drivers/isdn/Makefile
View file @
5d88a413
...
...
@@ -7,21 +7,20 @@ O_TARGET := vmlinux-obj.o
# Object files in subdirectories
mod-subdirs
:=
i4l hisax capi eicon
subdir-$(CONFIG_ISDN)
+=
i4l
subdir-$(CONFIG_ISDN_CAPI)
+=
capi
subdir-$(CONFIG_ISDN_CAPI)
+=
hardware
subdir-$(CONFIG_ISDN_DIVERSION)
+=
divert
subdir-$(CONFIG_ISDN_DRV_HISAX)
+=
hisax
subdir-$(CONFIG_ISDN_DRV_ICN)
+=
icn
subdir-$(CONFIG_ISDN_DRV_PCBIT)
+=
pcbit
subdir-$(CONFIG_ISDN_DRV_SC)
+=
sc
subdir-$(CONFIG_ISDN_DRV_LOOP)
+=
isdnloop
subdir-$(CONFIG_ISDN_DRV_ACT2000)
+=
act2000
subdir-$(CONFIG_ISDN_DRV_EICON)
+=
eicon
subdir-$(CONFIG_HYSDN)
+=
hysdn
subdir-$(CONFIG_ISDN_DRV_TPAM)
+=
tpam
obj-y
+=
$(
addsuffix
/vmlinux-obj.o,
$
(
subdir-y
))
obj-$(CONFIG_ISDN)
+=
i4l/
obj-$(CONFIG_ISDN_CAPI)
+=
capi/
obj-$(CONFIG_ISDN_CAPI)
+=
hardware/
obj-$(CONFIG_ISDN_DIVERSION)
+=
divert/
obj-$(CONFIG_ISDN_DRV_HISAX)
+=
hisax/
obj-$(CONFIG_ISDN_DRV_ICN)
+=
icn/
obj-$(CONFIG_ISDN_DRV_PCBIT)
+=
pcbit/
obj-$(CONFIG_ISDN_DRV_SC)
+=
sc/
obj-$(CONFIG_ISDN_DRV_LOOP)
+=
isdnloop/
obj-$(CONFIG_ISDN_DRV_ACT2000)
+=
act2000/
obj-$(CONFIG_ISDN_DRV_EICON)
+=
eicon/
obj-$(CONFIG_HYSDN)
+=
hysdn/
obj-$(CONFIG_ISDN_DRV_TPAM)
+=
tpam/
# The global Rules.make.
...
...
drivers/isdn/act2000/Makefile
View file @
5d88a413
...
...
@@ -2,7 +2,7 @@
# The target object and module list name.
O_TARGET
:=
vmlinux-obj
.o
O_TARGET
:=
built-in
.o
# Multipart objects.
...
...
drivers/isdn/capi/Makefile
View file @
5d88a413
...
...
@@ -2,7 +2,7 @@
# The target object and module list name.
O_TARGET
:=
vmlinux-obj
.o
O_TARGET
:=
built-in
.o
# Objects that export symbols.
...
...
drivers/isdn/divert/Makefile
View file @
5d88a413
...
...
@@ -4,7 +4,7 @@
# The target object and module list name.
O_TARGET
:=
vmlinux-obj
.o
O_TARGET
:=
built-in
.o
# Multipart objects.
...
...
drivers/isdn/eicon/Makefile
View file @
5d88a413
...
...
@@ -2,7 +2,7 @@
# The target object and module list name.
O_TARGET
:=
vmlinux-obj
.o
O_TARGET
:=
built-in
.o
# Objects that export symbols.
...
...
drivers/isdn/hardware/Makefile
View file @
5d88a413
...
...
@@ -2,14 +2,12 @@
# The target object and module list name.
O_TARGET
:=
vmlinux-obj
.o
O_TARGET
:=
built-in
.o
# Object files in subdirectories
mod-subdirs
:=
avm
subdir-$(CONFIG_CAPI_AVM)
+=
avm
obj-y
+=
$(
addsuffix
/vmlinux-obj.o,
$
(
subdir-y
))
mod-subdirs
:=
avm
obj-$(CONFIG_CAPI_AVM)
+=
avm/
# The global Rules.make.
...
...
drivers/isdn/hardware/avm/Makefile
View file @
5d88a413
...
...
@@ -2,7 +2,7 @@
# The target object and module list name.
O_TARGET
:=
vmlinux-obj
.o
O_TARGET
:=
built-in
.o
# Objects that export symbols.
...
...
drivers/isdn/hisax/Makefile
View file @
5d88a413
...
...
@@ -2,7 +2,7 @@
# The target object and module list name.
O_TARGET
:=
vmlinux-obj
.o
O_TARGET
:=
built-in
.o
# Define maximum number of cards
...
...
drivers/isdn/hysdn/Makefile
View file @
5d88a413
...
...
@@ -2,7 +2,7 @@
# The target object and module list name.
O_TARGET
:=
vmlinux-obj
.o
O_TARGET
:=
built-in
.o
# Multipart objects.
...
...
drivers/isdn/i4l/Makefile
View file @
5d88a413
...
...
@@ -2,7 +2,7 @@
# The target object and module list name.
O_TARGET
:=
vmlinux-obj
.o
O_TARGET
:=
built-in
.o
# Objects that export symbols.
...
...
@@ -21,8 +21,6 @@ isdn-objs-$(CONFIG_ISDN_TTY_FAX) += isdn_ttyfax.o
isdn-objs
+=
$
(
isdn-objs-y
)
# Ordering constraints: isdn.o first, rest doesn't matter
# Each configuration option enables a list of files.
obj-$(CONFIG_ISDN)
+=
isdn.o
...
...
drivers/isdn/icn/Makefile
View file @
5d88a413
...
...
@@ -2,7 +2,7 @@
# The target object and module list name.
O_TARGET
:=
vmlinux-obj
.o
O_TARGET
:=
built-in
.o
# Each configuration option enables a list of files.
...
...
drivers/isdn/isdnloop/Makefile
View file @
5d88a413
...
...
@@ -4,7 +4,7 @@
# The target object and module list name.
O_TARGET
:=
vmlinux-obj
.o
O_TARGET
:=
built-in
.o
# Each configuration option enables a list of files.
...
...
drivers/isdn/pcbit/Makefile
View file @
5d88a413
...
...
@@ -2,7 +2,7 @@
# The target object and module list name.
O_TARGET
:=
vmlinux-obj
.o
O_TARGET
:=
built-in
.o
# Multipart objects.
...
...
drivers/isdn/sc/Makefile
View file @
5d88a413
...
...
@@ -2,7 +2,7 @@
# The target object and module list name.
O_TARGET
:=
vmlinux-obj
.o
O_TARGET
:=
built-in
.o
# Multipart objects.
...
...
drivers/isdn/tpam/Makefile
View file @
5d88a413
...
...
@@ -2,7 +2,7 @@
# The target object and module list name.
O_TARGET
:=
vmlinux-obj
.o
O_TARGET
:=
built-in
.o
# Multipart objects.
...
...
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