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

Linux/Unix编程

开发平台:

Unix_Linux

  1. #
  2. # Makefile for some libs needed in the kernel.
  3. #
  4. # Note! Dependencies are done automagically by 'make dep', which also
  5. # removes any old dependencies. DON'T put your own dependencies here
  6. # unless it's something special (ie not a .c file).
  7. #
  8. L_TARGET := lib.a
  9. export-objs := cmdline.o dec_and_lock.o rwsem-spinlock.o rwsem.o rbtree.o
  10. obj-y := errno.o ctype.o string.o vsprintf.o brlock.o cmdline.o 
  11.  bust_spinlocks.o rbtree.o dump_stack.o
  12. obj-$(CONFIG_RWSEM_GENERIC_SPINLOCK) += rwsem-spinlock.o
  13. obj-$(CONFIG_RWSEM_XCHGADD_ALGORITHM) += rwsem.o
  14. ifneq ($(CONFIG_HAVE_DEC_LOCK),y) 
  15.   obj-y += dec_and_lock.o
  16. endif
  17. subdir-$(CONFIG_ZLIB_INFLATE) += zlib_inflate
  18. subdir-$(CONFIG_ZLIB_DEFLATE) += zlib_deflate
  19. # Include the subdirs, if necessary.
  20. obj-y += $(join $(subdir-y),$(subdir-y:%=/%.o))
  21. include $(TOPDIR)/Rules.make