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 9L_TARGET := lib.a 10 11export-objs := cmdline.o dec_and_lock.o rwsem-spinlock.o rwsem.o 12 13obj-y := errno.o ctype.o string.o vsprintf.o brlock.o cmdline.o bust_spinlocks.o rbtree.o 14 15obj-$(CONFIG_RWSEM_GENERIC_SPINLOCK) += rwsem-spinlock.o 16obj-$(CONFIG_RWSEM_XCHGADD_ALGORITHM) += rwsem.o 17 18ifneq ($(CONFIG_HAVE_DEC_LOCK),y) 19 obj-y += dec_and_lock.o 20endif 21 22include $(TOPDIR)/Rules.make 23

