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
5a6bdf60
Commit
5a6bdf60
authored
May 24, 2002
by
Kai Germaschewski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kbuild: Beautify ACPI Makefiles
parent
8fcf60e2
Changes
11
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
16 additions
and
42 deletions
+16
-42
drivers/acpi/Makefile
drivers/acpi/Makefile
+16
-22
drivers/acpi/debugger/Makefile
drivers/acpi/debugger/Makefile
+0
-2
drivers/acpi/dispatcher/Makefile
drivers/acpi/dispatcher/Makefile
+0
-2
drivers/acpi/events/Makefile
drivers/acpi/events/Makefile
+0
-2
drivers/acpi/executer/Makefile
drivers/acpi/executer/Makefile
+0
-2
drivers/acpi/hardware/Makefile
drivers/acpi/hardware/Makefile
+0
-2
drivers/acpi/namespace/Makefile
drivers/acpi/namespace/Makefile
+0
-2
drivers/acpi/parser/Makefile
drivers/acpi/parser/Makefile
+0
-2
drivers/acpi/resources/Makefile
drivers/acpi/resources/Makefile
+0
-2
drivers/acpi/tables/Makefile
drivers/acpi/tables/Makefile
+0
-2
drivers/acpi/utilities/Makefile
drivers/acpi/utilities/Makefile
+0
-2
No files found.
drivers/acpi/Makefile
View file @
5a6bdf60
...
@@ -21,35 +21,29 @@ obj-y := acpi_ksyms.o
...
@@ -21,35 +21,29 @@ obj-y := acpi_ksyms.o
#
#
# ACPI Boot-Time Table Parsing
# ACPI Boot-Time Table Parsing
#
#
ifeq
($(CONFIG_ACPI_BOOT),y)
obj-$(CONFIG_ACPI_BOOT)
+=
acpi_tables.o
obj-y
+=
acpi_tables.o
endif
#
#
# ACPI Core Subsystem (Interpreter)
# ACPI Core Subsystem (Interpreter)
#
#
ifeq
($(CONFIG_ACPI_INTERPRETER),y)
obj-$(CONFIG_ACPI_INTERPRETER)
+=
acpi_osl.o acpi_utils.o
\
obj-y
+=
acpi_osl.o acpi_utils.o
dispatcher/ events/ executer/ hardware/
\
subdir-y
+=
dispatcher events executer hardware namespace parser
\
namespace/ parser/ resources/ tables/
\
resources tables utilities
utilities/
obj-y
+=
$(
foreach
dir
,
$
(
subdir-y
)
,
$(dir)
/
$(dir)
.o
)
endif
#
#
# ACPI Bus and Device Drivers
# ACPI Bus and Device Drivers
#
#
ifeq
($(CONFIG_ACPI_BUS),y)
obj-$(CONFIG_ACPI_BUS)
+=
acpi_bus.o
obj-y
+=
acpi_bus.o
obj-$(CONFIG_ACPI_AC)
+=
acpi_ac.o
obj-$(CONFIG_ACPI_AC)
+=
acpi_ac.o
obj-$(CONFIG_ACPI_BATTERY)
+=
acpi_battery.o
obj-$(CONFIG_ACPI_BATTERY)
+=
acpi_battery.o
obj-$(CONFIG_ACPI_BUTTON)
+=
acpi_button.o
obj-$(CONFIG_ACPI_BUTTON)
+=
acpi_button.o
obj-$(CONFIG_ACPI_EC)
+=
acpi_ec.o
obj-$(CONFIG_ACPI_EC)
+=
acpi_ec.o
obj-$(CONFIG_ACPI_FAN)
+=
acpi_fan.o
obj-$(CONFIG_ACPI_FAN)
+=
acpi_fan.o
obj-$(CONFIG_ACPI_PCI)
+=
acpi_pci_root.o acpi_pci_link.o
obj-$(CONFIG_ACPI_PCI)
+=
acpi_pci_root.o acpi_pci_link.o
obj-$(CONFIG_ACPI_POWER)
+=
acpi_power.o
obj-$(CONFIG_ACPI_POWER)
+=
acpi_power.o
obj-$(CONFIG_ACPI_PROCESSOR)
+=
acpi_processor.o
obj-$(CONFIG_ACPI_PROCESSOR)
+=
acpi_processor.o
obj-$(CONFIG_ACPI_THERMAL)
+=
acpi_thermal.o
obj-$(CONFIG_ACPI_THERMAL)
+=
acpi_thermal.o
obj-$(CONFIG_ACPI_SYSTEM)
+=
acpi_system.o
obj-$(CONFIG_ACPI_SYSTEM)
+=
acpi_system.o
endif
include
$(TOPDIR)/Rules.make
include
$(TOPDIR)/Rules.make
drivers/acpi/debugger/Makefile
View file @
5a6bdf60
...
@@ -2,8 +2,6 @@
...
@@ -2,8 +2,6 @@
# Makefile for all Linux ACPI interpreter subdirectories
# Makefile for all Linux ACPI interpreter subdirectories
#
#
O_TARGET
:=
$(
notdir
$(CURDIR)
)
.o
obj-$(CONFIG_ACPI_INTERPRETER)
:=
$(
patsubst
%.c,%.o,
$(
wildcard
*
.c
))
obj-$(CONFIG_ACPI_INTERPRETER)
:=
$(
patsubst
%.c,%.o,
$(
wildcard
*
.c
))
EXTRA_CFLAGS
+=
$(ACPI_CFLAGS)
EXTRA_CFLAGS
+=
$(ACPI_CFLAGS)
...
...
drivers/acpi/dispatcher/Makefile
View file @
5a6bdf60
...
@@ -2,8 +2,6 @@
...
@@ -2,8 +2,6 @@
# Makefile for all Linux ACPI interpreter subdirectories
# Makefile for all Linux ACPI interpreter subdirectories
#
#
O_TARGET
:=
$(
notdir
$(CURDIR)
)
.o
obj-$(CONFIG_ACPI_INTERPRETER)
:=
$(
patsubst
%.c,%.o,
$(
wildcard
*
.c
))
obj-$(CONFIG_ACPI_INTERPRETER)
:=
$(
patsubst
%.c,%.o,
$(
wildcard
*
.c
))
EXTRA_CFLAGS
+=
$(ACPI_CFLAGS)
EXTRA_CFLAGS
+=
$(ACPI_CFLAGS)
...
...
drivers/acpi/events/Makefile
View file @
5a6bdf60
...
@@ -2,8 +2,6 @@
...
@@ -2,8 +2,6 @@
# Makefile for all Linux ACPI interpreter subdirectories
# Makefile for all Linux ACPI interpreter subdirectories
#
#
O_TARGET
:=
$(
notdir
$(CURDIR)
)
.o
obj-$(CONFIG_ACPI_INTERPRETER)
:=
$(
patsubst
%.c,%.o,
$(
wildcard
*
.c
))
obj-$(CONFIG_ACPI_INTERPRETER)
:=
$(
patsubst
%.c,%.o,
$(
wildcard
*
.c
))
EXTRA_CFLAGS
+=
$(ACPI_CFLAGS)
EXTRA_CFLAGS
+=
$(ACPI_CFLAGS)
...
...
drivers/acpi/executer/Makefile
View file @
5a6bdf60
...
@@ -2,8 +2,6 @@
...
@@ -2,8 +2,6 @@
# Makefile for all Linux ACPI interpreter subdirectories
# Makefile for all Linux ACPI interpreter subdirectories
#
#
O_TARGET
:=
$(
notdir
$(CURDIR)
)
.o
obj-$(CONFIG_ACPI_INTERPRETER)
:=
$(
patsubst
%.c,%.o,
$(
wildcard
*
.c
))
obj-$(CONFIG_ACPI_INTERPRETER)
:=
$(
patsubst
%.c,%.o,
$(
wildcard
*
.c
))
EXTRA_CFLAGS
+=
$(ACPI_CFLAGS)
EXTRA_CFLAGS
+=
$(ACPI_CFLAGS)
...
...
drivers/acpi/hardware/Makefile
View file @
5a6bdf60
...
@@ -2,8 +2,6 @@
...
@@ -2,8 +2,6 @@
# Makefile for all Linux ACPI interpreter subdirectories
# Makefile for all Linux ACPI interpreter subdirectories
#
#
O_TARGET
:=
$(
notdir
$(CURDIR)
)
.o
obj-$(CONFIG_ACPI_INTERPRETER)
:=
$(
patsubst
%.c,%.o,
$(
wildcard
*
.c
))
obj-$(CONFIG_ACPI_INTERPRETER)
:=
$(
patsubst
%.c,%.o,
$(
wildcard
*
.c
))
EXTRA_CFLAGS
+=
$(ACPI_CFLAGS)
EXTRA_CFLAGS
+=
$(ACPI_CFLAGS)
...
...
drivers/acpi/namespace/Makefile
View file @
5a6bdf60
...
@@ -2,8 +2,6 @@
...
@@ -2,8 +2,6 @@
# Makefile for all Linux ACPI interpreter subdirectories
# Makefile for all Linux ACPI interpreter subdirectories
#
#
O_TARGET
:=
$(
notdir
$(CURDIR)
)
.o
obj-$(CONFIG_ACPI_INTERPRETER)
:=
$(
patsubst
%.c,%.o,
$(
wildcard
*
.c
))
obj-$(CONFIG_ACPI_INTERPRETER)
:=
$(
patsubst
%.c,%.o,
$(
wildcard
*
.c
))
EXTRA_CFLAGS
+=
$(ACPI_CFLAGS)
EXTRA_CFLAGS
+=
$(ACPI_CFLAGS)
...
...
drivers/acpi/parser/Makefile
View file @
5a6bdf60
...
@@ -2,8 +2,6 @@
...
@@ -2,8 +2,6 @@
# Makefile for all Linux ACPI interpreter subdirectories
# Makefile for all Linux ACPI interpreter subdirectories
#
#
O_TARGET
:=
$(
notdir
$(CURDIR)
)
.o
obj-$(CONFIG_ACPI_INTERPRETER)
:=
$(
patsubst
%.c,%.o,
$(
wildcard
*
.c
))
obj-$(CONFIG_ACPI_INTERPRETER)
:=
$(
patsubst
%.c,%.o,
$(
wildcard
*
.c
))
EXTRA_CFLAGS
+=
$(ACPI_CFLAGS)
EXTRA_CFLAGS
+=
$(ACPI_CFLAGS)
...
...
drivers/acpi/resources/Makefile
View file @
5a6bdf60
...
@@ -2,8 +2,6 @@
...
@@ -2,8 +2,6 @@
# Makefile for all Linux ACPI interpreter subdirectories
# Makefile for all Linux ACPI interpreter subdirectories
#
#
O_TARGET
:=
$(
notdir
$(CURDIR)
)
.o
obj-$(CONFIG_ACPI_INTERPRETER)
:=
$(
patsubst
%.c,%.o,
$(
wildcard
*
.c
))
obj-$(CONFIG_ACPI_INTERPRETER)
:=
$(
patsubst
%.c,%.o,
$(
wildcard
*
.c
))
EXTRA_CFLAGS
+=
$(ACPI_CFLAGS)
EXTRA_CFLAGS
+=
$(ACPI_CFLAGS)
...
...
drivers/acpi/tables/Makefile
View file @
5a6bdf60
...
@@ -2,8 +2,6 @@
...
@@ -2,8 +2,6 @@
# Makefile for all Linux ACPI interpreter subdirectories
# Makefile for all Linux ACPI interpreter subdirectories
#
#
O_TARGET
:=
$(
notdir
$(CURDIR)
)
.o
obj-$(CONFIG_ACPI_INTERPRETER)
:=
$(
patsubst
%.c,%.o,
$(
wildcard
*
.c
))
obj-$(CONFIG_ACPI_INTERPRETER)
:=
$(
patsubst
%.c,%.o,
$(
wildcard
*
.c
))
EXTRA_CFLAGS
+=
$(ACPI_CFLAGS)
EXTRA_CFLAGS
+=
$(ACPI_CFLAGS)
...
...
drivers/acpi/utilities/Makefile
View file @
5a6bdf60
...
@@ -2,8 +2,6 @@
...
@@ -2,8 +2,6 @@
# Makefile for all Linux ACPI interpreter subdirectories
# Makefile for all Linux ACPI interpreter subdirectories
#
#
O_TARGET
:=
$(
notdir
$(CURDIR)
)
.o
obj-$(CONFIG_ACPI_INTERPRETER)
:=
$(
patsubst
%.c,%.o,
$(
wildcard
*
.c
))
obj-$(CONFIG_ACPI_INTERPRETER)
:=
$(
patsubst
%.c,%.o,
$(
wildcard
*
.c
))
EXTRA_CFLAGS
+=
$(ACPI_CFLAGS)
EXTRA_CFLAGS
+=
$(ACPI_CFLAGS)
...
...
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