⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 makefile

📁 Linux内核源代码 为压缩文件 是<<Linux内核>>一书中的源代码
💻
字号:
## inflate/Makefile### NOTE NOTE NOTE!## This code is basically a bastardized version of the zlib# library uncompression. It avoids dynamic allocations at# all cost, and is cut down in other ways too, to make it# simpler and more specialized. If you want to get the real# thing, don't look here.## The simplifications mean that this version of the library# (unlike the real lib) is completely single-threaded, and# you cannot do multiple uncompressions at a time. You can# ONLY use it to uncompress a single block, with both the# source and the destination completely in memory. In SMP# environments, the uncompression has to be protected by# some lock to guarantee single-threaded access to the static# data structures used for inflation.## You have been warned.## (The upsides of the simplification is that you can't get in# any nasty situations wrt memory management, and that the# uncompression can be done without blocking on allocation).#O_TARGET := zlib.oobj-y := adler32.o infblock.o infcodes.o inffast.o inflate.o \         inftrees.o infutil.o uncompr.oinclude $(TOPDIR)/Rules.make

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -