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
f38b18a0
Commit
f38b18a0
authored
May 09, 2002
by
Linus Torvalds
Committed by
Linus Torvalds
May 09, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix 'export-objs' usage in Makefiles.
Noted by Keith Owens.
parent
d891ea7b
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
9 deletions
+6
-9
arch/i386/pci/Makefile
arch/i386/pci/Makefile
+0
-2
drivers/base/Makefile
drivers/base/Makefile
+1
-1
drivers/pci/Makefile
drivers/pci/Makefile
+2
-2
fs/nls/Makefile
fs/nls/Makefile
+3
-4
No files found.
arch/i386/pci/Makefile
View file @
f38b18a0
...
...
@@ -24,6 +24,4 @@ endif # CONFIG_MULTIQUAD
obj-y
+=
irq.o common.o
endif
# CONFIG_VISWS
export-objs
+=
$
(
obj-y
)
include
$(TOPDIR)/Rules.make
drivers/base/Makefile
View file @
f38b18a0
...
...
@@ -2,6 +2,6 @@ O_TARGET := base.o
obj-y
:=
core.o sys.o interface.o fs.o power.o
export-objs
:=
$
(
obj-y
)
export-objs
:=
core.o fs.o power.o sys.o
include
$(TOPDIR)/Rules.make
drivers/pci/Makefile
View file @
f38b18a0
...
...
@@ -11,6 +11,8 @@
O_TARGET
:=
driver.o
export-objs
:=
access.o hotplug.o pci-driver.o pci.o pool.o probe.o proc.o search.o
obj-y
+=
access.o probe.o pci.o pool.o quirks.o
\
compat.o names.o pci-driver.o search.o
obj-$(CONFIG_PM)
+=
power.o
...
...
@@ -37,8 +39,6 @@ ifndef CONFIG_X86
obj-y
+=
syscall.o
endif
export-objs
:=
$
(
obj-y
)
include
$(TOPDIR)/Rules.make
names.o
:
names.c devlist.h classlist.h
...
...
fs/nls/Makefile
View file @
f38b18a0
...
...
@@ -2,6 +2,9 @@
# Makefile for native language support
#
O_TARGET
=
nls.o
export-objs
:=
nls_base.o
obj-y
:=
nls_base.o
obj-m
:=
obj-n
:=
...
...
@@ -53,8 +56,4 @@ obj-$(CONFIG_NLS_KOI8_U) += nls_koi8-u.o nls_koi8-ru.o
obj-$(CONFIG_NLS_ABC)
+=
nls_abc.o
obj-$(CONFIG_NLS_UTF8)
+=
nls_utf8.o
export-objs
=
$
(
obj-y
)
O_TARGET
=
nls.o
include
$(TOPDIR)/Rules.make
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