Makefile
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:0k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. #
  2. # This is a modified version of zlib, which does all memory
  3. # allocation ahead of time.
  4. #
  5. # This is the compression code, see zlib_inflate for the
  6. # decompression code.
  7. #
  8. O_TARGET    := zlib_deflate.o
  9. export-objs := deflate_syms.o
  10. obj-y := deflate.o deftree.o deflate_syms.o
  11. obj-m := $(O_TARGET)
  12. EXTRA_CFLAGS += -I $(TOPDIR)/lib/zlib_deflate
  13. include $(TOPDIR)/Rules.make