Makefile
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:1k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. #
  2. # This is a modified version of zlib, which does all memory
  3. # allocation ahead of time.
  4. #
  5. # Currently only decompression is supported.
  6. #
  7. # Decompression needs to be serialized for each memory
  8. # allocation.
  9. #
  10. #
  11. # (The upsides of the simplification is that you can't get in
  12. # any nasty situations wrt memory management, and that the
  13. # uncompression can be done without blocking on allocation).
  14. #
  15. # The modules are named *_fs.o to distinguish from other modified
  16. # compression libraries, like the one used by ppp.
  17. #
  18. # It is expected that when a deflate module is added it will be
  19. # a separate module in a deflate_fs directory, to avoid having to
  20. # load the deflate code for readonly filesystems.
  21. #
  22. O_TARGET    := inflate_fs.o
  23. export-objs := inflate_syms.o
  24. obj-y := adler32.o infblock.o infcodes.o inffast.o inflate.o 
  25.  inftrees.o infutil.o inflate_syms.o
  26. obj-m := $(O_TARGET)
  27. EXTRA_CFLAGS += -I $(TOPDIR)/fs/inflate_fs
  28. include $(TOPDIR)/Rules.make