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
nexedi
linux
Commits
c1200df0
Commit
c1200df0
authored
May 23, 2002
by
Kai Germaschewski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kbuild: Use standard multi-part object declaration in drivers/video/*
parent
d859f5cb
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
20 additions
and
37 deletions
+20
-37
drivers/video/Makefile
drivers/video/Makefile
+4
-20
drivers/video/aty/Makefile
drivers/video/aty/Makefile
+7
-5
drivers/video/matrox/Makefile
drivers/video/matrox/Makefile
+1
-1
drivers/video/riva/Makefile
drivers/video/riva/Makefile
+4
-8
drivers/video/sis/Makefile
drivers/video/sis/Makefile
+4
-3
No files found.
drivers/video/Makefile
View file @
c1200df0
...
...
@@ -88,26 +88,10 @@ obj-$(CONFIG_FB_PMAGB_B) += pmagb-b-fb.o
obj-$(CONFIG_FB_MAXINE)
+=
maxinefb.o
obj-$(CONFIG_FB_TX3912)
+=
tx3912fb.o
subdir-$(CONFIG_FB_MATROX)
+=
matrox
ifeq
($(CONFIG_FB_MATROX),y)
obj-y
+=
matrox/matrox.o
endif
subdir-$(CONFIG_FB_RIVA)
+=
riva
ifeq
($(CONFIG_FB_RIVA),y)
obj-y
+=
riva/rivafb.o
endif
subdir-$(CONFIG_FB_SIS)
+=
sis
ifeq
($(CONFIG_FB_SIS),y)
obj-y
+=
sis/sisfb.o
endif
subdir-$(CONFIG_FB_ATY)
+=
aty
ifeq
($(CONFIG_FB_ATY),y)
obj-y
+=
aty/atyfb.o
endif
obj-$(CONFIG_FB_MATROX)
+=
matrox/
obj-$(CONFIG_FB_RIVA)
+=
riva/
obj-$(CONFIG_FB_SIS)
+=
sis/
obj-$(CONFIG_FB_ATY)
+=
aty/
obj-$(CONFIG_FB_SUN3)
+=
sun3fb.o
obj-$(CONFIG_FB_BWTWO)
+=
bwtwofb.o
...
...
drivers/video/aty/Makefile
View file @
c1200df0
O_TARGET
:=
atyfb
.o
O_TARGET
:=
built-in
.o
export-objs
:=
atyfb_base.o mach64_accel.o
obj-y
:=
atyfb_base.o mach64_accel.o
obj-$(CONFIG_FB_ATY_GX)
+=
mach64_gx.o
obj-$(CONFIG_FB_ATY_CT)
+=
mach64_ct.o mach64_cursor.o
obj-m
:=
$(O_TARGET)
obj-$(CONFIG_FB_ATY)
+=
atyfb.o
atyfb-y
:=
atyfb_base.o mach64_accel.o
atyfb-$(CONFIG_FB_ATY_GX)
+=
mach64_gx.o
atyfb-$(CONFIG_FB_ATY_CT)
+=
mach64_ct.o mach64_cursor.o
atyfb-objs
:=
$
(
atyfb-y
)
include
$(TOPDIR)/Rules.make
drivers/video/matrox/Makefile
View file @
c1200df0
...
...
@@ -2,7 +2,7 @@
# 5 Aug 1999, James Simmons, <mailto:jsimmons@edgeglobal.com>
# Rewritten to use lists instead of if-statements.
O_TARGET
:=
matrox
.o
O_TARGET
:=
built-in
.o
# All of the (potential) objects that export symbols.
# This list comes from 'grep -l EXPORT_SYMBOL *.[hc]'.
...
...
drivers/video/riva/Makefile
View file @
c1200df0
#
# Makefile for the Riva framebuffer driver
#
# 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 definitions are now in the main makefile...
O_TARGET
:=
rivafb.o
O_TARGET
:=
built-in.o
obj-$(CONFIG_FB_RIVA)
+=
rivafb.o
obj-y
:=
fbdev.o riva_hw.o accel.o
obj-m
:=
$(O_TARGET)
rivafb-objs
:=
fbdev.o riva_hw.o accel.o
include
$(TOPDIR)/Rules.make
drivers/video/sis/Makefile
View file @
c1200df0
...
...
@@ -2,12 +2,13 @@
# Makefile for the SiS framebuffer device driver
#
O_TARGET
:=
sisfb
.o
O_TARGET
:=
built-in
.o
export-objs
:=
sis_main.o
obj-y
:=
sis_main.o init.o init301.o
obj-m
:=
$(O_TARGET)
obj-$(CONFIG_FB_SIS)
+=
sisfb.o
sisfb-objs
:=
sis_main.o init.o init301.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