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
d8ae128a
Commit
d8ae128a
authored
May 24, 2002
by
Kai Germaschewski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kbuild: Use standard multi-part object declaration in lib/*
parent
5a6bdf60
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
16 deletions
+7
-16
lib/Makefile
lib/Makefile
+2
-5
lib/zlib_deflate/Makefile
lib/zlib_deflate/Makefile
+2
-5
lib/zlib_inflate/Makefile
lib/zlib_inflate/Makefile
+3
-6
No files found.
lib/Makefile
View file @
d8ae128a
...
...
@@ -23,11 +23,8 @@ endif
obj-$(CONFIG_CRC32)
+=
crc32.o
subdir-$(CONFIG_ZLIB_INFLATE)
+=
zlib_inflate
subdir-$(CONFIG_ZLIB_DEFLATE)
+=
zlib_deflate
# Include the subdirs, if necessary.
obj-y
+=
$(
join
$
(
subdir-y
)
,
$
(
subdir-y:%
=
/%.o
))
obj-$(CONFIG_ZLIB_INFLATE)
+=
zlib_inflate/
obj-$(CONFIG_ZLIB_DEFLATE)
+=
zlib_deflate/
include
$(TOPDIR)/drivers/net/Makefile.lib
include
$(TOPDIR)/drivers/usb/class/Makefile.lib
...
...
lib/zlib_deflate/Makefile
View file @
d8ae128a
...
...
@@ -6,13 +6,10 @@
# decompression code.
#
O_TARGET
:=
zlib_deflate.o
export-objs
:=
deflate_syms.o
obj-y
:=
deflate.o deftree.o deflate_syms.o
obj-m
:=
$(O_TARGET)
obj-$(CONFIG_ZLIB_DEFLATE)
+=
zlib_deflate.o
EXTRA_CFLAGS
+=
-I
$(TOPDIR)
/lib/zlib_deflate
zlib_deflate-objs
:=
deflate.o deftree.o deflate_syms.o
include
$(TOPDIR)/Rules.make
lib/zlib_inflate/Makefile
View file @
d8ae128a
...
...
@@ -13,14 +13,11 @@
# uncompression can be done without blocking on allocation).
#
O_TARGET
:=
zlib_inflate.o
export-objs
:=
inflate_syms.o
obj-y
:=
infblock.o infcodes.o inffast.o inflate.o
\
inftrees.o infutil.o inflate_syms.o
obj-m
:=
$(O_TARGET)
obj-$(CONFIG_ZLIB_INFLATE)
+=
zlib_inflate.o
EXTRA_CFLAGS
+=
-I
$(TOPDIR)
/lib/zlib_inflate
zlib_inflate-objs
:=
infblock.o infcodes.o inffast.o inflate.o
\
inftrees.o infutil.o inflate_syms.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