xref: /openbmc/linux/lib/Makefile (revision 22b361d1)
11da177e4SLinus Torvalds#
21da177e4SLinus Torvalds# Makefile for some libs needed in the kernel.
31da177e4SLinus Torvalds#
41da177e4SLinus Torvalds
5606576ceSSteven Rostedtifdef CONFIG_FUNCTION_TRACER
62464a609SIngo MolnarORIG_CFLAGS := $(KBUILD_CFLAGS)
72464a609SIngo MolnarKBUILD_CFLAGS = $(subst -pg,,$(ORIG_CFLAGS))
82464a609SIngo Molnarendif
92464a609SIngo Molnar
107a5c5d57SAlexey Dobriyanlib-y := ctype.o string.o vsprintf.o cmdline.o \
111f5a2479SJohn Stultz	 rbtree.o radix-tree.o dump_stack.o timerqueue.o\
1222b361d1SOleg Nesterov	 idr.o int_sqrt.o extable.o \
13bc0b96b5SDavid S. Miller	 sha1.o md5.o irq_regs.o reciprocal_div.o argv_split.o \
14f3109a51SJan Kara	 proportions.o flex_proportions.o prio_heap.o ratelimit.o show_mem.o \
1518dd0bf2SLinus Torvalds	 is_single_threaded.o plist.o decompress.o kobject_uevent.o \
1618dd0bf2SLinus Torvalds	 earlycpio.o
179a19fea4Smochel@digitalimplant.org
1874588d8bSHaavard Skinnemoenlib-$(CONFIG_MMU) += ioremap.o
19ccb46000SAndrew Mortonlib-$(CONFIG_SMP) += cpumask.o
20ccb46000SAndrew Morton
214af679cdSPeter Zijlstralib-y	+= kobject.o klist.o
221da177e4SLinus Torvalds
23d3de851aSDavid Brownellobj-y += bcd.o div64.o sort.o parser.o halfmd4.o debug_locks.o random32.o \
243c9f3681SJames Bottomley	 bust_spinlocks.o hexdump.o kasprintf.o bitmap.o scatterlist.o \
251a94dc35STim Abbott	 string_helpers.o gcd.o lcm.o list_sort.o uuid.o flex_array.o \
26639b9e34SAkinobu Mita	 bsearch.o find_last_bit.o find_next_bit.o llist.o memweight.o
2733ee3b2eSAlexey Dobriyanobj-y += kstrtox.o
2833ee3b2eSAlexey Dobriyanobj-$(CONFIG_TEST_KSTRTOX) += test-kstrtox.o
291da177e4SLinus Torvalds
301da177e4SLinus Torvaldsifeq ($(CONFIG_DEBUG_KOBJECT),y)
311da177e4SLinus TorvaldsCFLAGS_kobject.o += -DDEBUG
321da177e4SLinus TorvaldsCFLAGS_kobject_uevent.o += -DDEBUG
331da177e4SLinus Torvaldsendif
341da177e4SLinus Torvalds
355ea81769SAl Viroobj-$(CONFIG_GENERIC_IOMAP) += iomap.o
3666eab4dfSMichael S. Tsirkinobj-$(CONFIG_GENERIC_PCI_IOMAP) += pci_iomap.o
37928923c7SGeert Uytterhoevenobj-$(CONFIG_HAS_IOMEM) += iomap_copy.o devres.o
38928923c7SGeert Uytterhoevenobj-$(CONFIG_CHECK_SIGNATURE) += check_signature.o
39cae2ed9aSIngo Molnarobj-$(CONFIG_DEBUG_LOCKING_API_SELFTESTS) += locking-selftest.o
40fb1c8f93SIngo Molnarobj-$(CONFIG_DEBUG_SPINLOCK) += spinlock_debug.o
411da177e4SLinus Torvaldslib-$(CONFIG_RWSEM_GENERIC_SPINLOCK) += rwsem-spinlock.o
421da177e4SLinus Torvaldslib-$(CONFIG_RWSEM_XCHGADD_ALGORITHM) += rwsem.o
4322b361d1SOleg Nesterovlib-$(CONFIG_PERCPU_RWSEM) += percpu-rwsem.o
44d61931d8SBorislav Petkov
45d61931d8SBorislav PetkovCFLAGS_hweight.o = $(subst $(quote),,$(CONFIG_ARCH_HWEIGHT_CFLAGS))
46702a28b1SRandy Dunlapobj-$(CONFIG_GENERIC_HWEIGHT) += hweight.o
47d61931d8SBorislav Petkov
485db53f3eSJoern Engelobj-$(CONFIG_BTREE) += btree.o
4939c715b7SIngo Molnarobj-$(CONFIG_DEBUG_PREEMPT) += smp_processor_id.o
50199a9afcSDave Jonesobj-$(CONFIG_DEBUG_LIST) += list_debug.o
513ac7fe5aSThomas Gleixnerobj-$(CONFIG_DEBUG_OBJECTS) += debugobjects.o
521da177e4SLinus Torvalds
531da177e4SLinus Torvaldsifneq ($(CONFIG_HAVE_DEC_LOCK),y)
541da177e4SLinus Torvalds  lib-y += dec_and_lock.o
551da177e4SLinus Torvaldsendif
561da177e4SLinus Torvalds
57a5cfc1ecSAkinobu Mitaobj-$(CONFIG_BITREVERSE) += bitrev.o
588759ef32SOskar Schirmerobj-$(CONFIG_RATIONAL)	+= rational.o
591da177e4SLinus Torvaldsobj-$(CONFIG_CRC_CCITT)	+= crc-ccitt.o
607657ec1fSEvgeniy Polyakovobj-$(CONFIG_CRC16)	+= crc16.o
61f11f594eSMartin K. Petersenobj-$(CONFIG_CRC_T10DIF)+= crc-t10dif.o
623e7cbae7SIvo van Doornobj-$(CONFIG_CRC_ITU_T)	+= crc-itu-t.o
631da177e4SLinus Torvaldsobj-$(CONFIG_CRC32)	+= crc32.o
64ad241528SJan Nikitenkoobj-$(CONFIG_CRC7)	+= crc7.o
651da177e4SLinus Torvaldsobj-$(CONFIG_LIBCRC32C)	+= libcrc32c.o
667150962dSArend van Sprielobj-$(CONFIG_CRC8)	+= crc8.o
67f14f75b8SJes Sorensenobj-$(CONFIG_GENERIC_ALLOCATOR) += genalloc.o
681da177e4SLinus Torvalds
691da177e4SLinus Torvaldsobj-$(CONFIG_ZLIB_INFLATE) += zlib_inflate/
701da177e4SLinus Torvaldsobj-$(CONFIG_ZLIB_DEFLATE) += zlib_deflate/
711da177e4SLinus Torvaldsobj-$(CONFIG_REED_SOLOMON) += reed_solomon/
72437aa565SIvan Djelicobj-$(CONFIG_BCH) += bch.o
7364c70b1cSRichard Purdieobj-$(CONFIG_LZO_COMPRESS) += lzo/
7464c70b1cSRichard Purdieobj-$(CONFIG_LZO_DECOMPRESS) += lzo/
7524fa0402SLasse Collinobj-$(CONFIG_XZ_DEC) += xz/
76f5e70d0fSDavid Woodhouseobj-$(CONFIG_RAID6_PQ) += raid6/
771da177e4SLinus Torvalds
78889c92d2SH. Peter Anvinlib-$(CONFIG_DECOMPRESS_GZIP) += decompress_inflate.o
79889c92d2SH. Peter Anvinlib-$(CONFIG_DECOMPRESS_BZIP2) += decompress_bunzip2.o
80889c92d2SH. Peter Anvinlib-$(CONFIG_DECOMPRESS_LZMA) += decompress_unlzma.o
813ebe1243SLasse Collinlib-$(CONFIG_DECOMPRESS_XZ) += decompress_unxz.o
82cacb246fSAlbin Tonnerrelib-$(CONFIG_DECOMPRESS_LZO) += decompress_unlzo.o
83c8531ab3SH. Peter Anvin
8465df877aSDavid S. Millerobj-$(CONFIG_TEXTSEARCH) += textsearch.o
85df3fb93aSThomas Grafobj-$(CONFIG_TEXTSEARCH_KMP) += ts_kmp.o
868082e4edSPablo Neira Ayusoobj-$(CONFIG_TEXTSEARCH_BM) += ts_bm.o
876408f79cSThomas Grafobj-$(CONFIG_TEXTSEARCH_FSM) += ts_fsm.o
883cbc5640SRavikiran G Thirumalaiobj-$(CONFIG_SMP) += percpu_counter.o
89e65e1fc2SAl Viroobj-$(CONFIG_AUDIT_GENERIC) += audit.o
902de4ff7bSThomas Graf
916c654b5fSJohn W. Linvilleobj-$(CONFIG_SWIOTLB) += swiotlb.o
920291df8cSFUJITA Tomonoriobj-$(CONFIG_IOMMU_HELPER) += iommu-helper.o
936ff1cb35SAkinobu Mitaobj-$(CONFIG_FAULT_INJECTION) += fault-inject.o
948d438288SAkinobu Mitaobj-$(CONFIG_NOTIFIER_ERROR_INJECTION) += notifier-error-inject.o
95c9d221f8SAkinobu Mitaobj-$(CONFIG_CPU_NOTIFIER_ERROR_INJECT) += cpu-notifier-error-inject.o
96048b9c35SAkinobu Mitaobj-$(CONFIG_PM_NOTIFIER_ERROR_INJECT) += pm-notifier-error-inject.o
979579f5bdSAkinobu Mitaobj-$(CONFIG_MEMORY_NOTIFIER_ERROR_INJECT) += memory-notifier-error-inject.o
9808dfb4ddSAkinobu Mitaobj-$(CONFIG_PSERIES_RECONFIG_NOTIFIER_ERROR_INJECT) += \
9908dfb4ddSAkinobu Mita	pSeries-reconfig-notifier-error-inject.o
1006c654b5fSJohn W. Linville
1017664c5a1SJeremy Fitzhardingelib-$(CONFIG_GENERIC_BUG) += bug.o
1027664c5a1SJeremy Fitzhardinge
103bbc69863SRoland McGrathobj-$(CONFIG_HAVE_ARCH_TRACEHOOK) += syscall.o
104bbc69863SRoland McGrath
105e9d376f0SJason Baronobj-$(CONFIG_DYNAMIC_DEBUG) += dynamic_debug.o
106346e15beSJason Baron
107e9cc8bddSGeert Uytterhoevenobj-$(CONFIG_NLATTR) += nlattr.o
1081da177e4SLinus Torvalds
109b411b363SPhilipp Reisnerobj-$(CONFIG_LRU_CACHE) += lru_cache.o
110b411b363SPhilipp Reisner
111f2f45e5fSJoerg Roedelobj-$(CONFIG_DMA_API_DEBUG) += dma-debug.o
112f2f45e5fSJoerg Roedel
11326a28fa4SArnd Bergmannobj-$(CONFIG_GENERIC_CSUM) += checksum.o
11426a28fa4SArnd Bergmann
11509d4e0edSPaul Mackerrasobj-$(CONFIG_GENERIC_ATOMIC64) += atomic64.o
11609d4e0edSPaul Mackerras
11786a89380SLuca Barbieriobj-$(CONFIG_ATOMIC64_SELFTEST) += atomic64_test.o
11886a89380SLuca Barbieri
119c5485a7eSBruno Randolfobj-$(CONFIG_AVERAGE) += average.o
120c5485a7eSBruno Randolf
121c39649c3SBen Hutchingsobj-$(CONFIG_CPU_RMAP) += cpu_rmap.o
122c39649c3SBen Hutchings
12310f8113eSArend van Sprielobj-$(CONFIG_CORDIC) += cordic.o
12410f8113eSArend van Spriel
12575957ba3STom Herbertobj-$(CONFIG_DQL) += dynamic_queue_limits.o
12675957ba3STom Herbert
127d9c46b18SDmitry Kasatkinobj-$(CONFIG_MPILIB) += mpi/
1285e8898e9SDmitry Kasatkinobj-$(CONFIG_SIGNATURE) += digsig.o
129d9c46b18SDmitry Kasatkin
130c6df4b17SDavid Millerobj-$(CONFIG_CLZ_TAB) += clz_tab.o
131c6df4b17SDavid Miller
1329c1c21a0SAneesh Vobj-$(CONFIG_DDR) += jedec_ddr_data.o
1339c1c21a0SAneesh V
1342922585bSDavid S. Millerobj-$(CONFIG_GENERIC_STRNCPY_FROM_USER) += strncpy_from_user.o
135a08c5356SLinus Torvaldsobj-$(CONFIG_GENERIC_STRNLEN_USER) += strnlen_user.o
1362922585bSDavid S. Miller
1374ccf4beaSWolfram Sangobj-$(CONFIG_STMP_DEVICE) += stmp_device.o
1384ccf4beaSWolfram Sang
139ab253839SDavid Daneylibfdt_files = fdt.o fdt_ro.o fdt_wip.o fdt_rw.o fdt_sw.o fdt_strerror.o
140ab253839SDavid Daney$(foreach file, $(libfdt_files), \
141ab253839SDavid Daney	$(eval CFLAGS_$(file) = -I$(src)/../scripts/dtc/libfdt))
142ab253839SDavid Daneylib-$(CONFIG_LIBFDT) += $(libfdt_files)
143ab253839SDavid Daney
144910a742dSMichel Lespinasseobj-$(CONFIG_RBTREE_TEST) += rbtree_test.o
145fff3fd8aSMichel Lespinasseobj-$(CONFIG_INTERVAL_TREE_TEST) += interval_tree_test.o
146fff3fd8aSMichel Lespinasse
147fff3fd8aSMichel Lespinasseinterval_tree_test-objs := interval_tree_test_main.o interval_tree.o
148910a742dSMichel Lespinasse
14942d5ec27SDavid Howellsobj-$(CONFIG_ASN1) += asn1_decoder.o
15042d5ec27SDavid Howells
1511da177e4SLinus Torvaldshostprogs-y	:= gen_crc32table
1521da177e4SLinus Torvaldsclean-files	:= crc32table.h
1531da177e4SLinus Torvalds
1541da177e4SLinus Torvalds$(obj)/crc32.o: $(obj)/crc32table.h
1551da177e4SLinus Torvalds
1561da177e4SLinus Torvaldsquiet_cmd_crc32 = GEN     $@
1571da177e4SLinus Torvalds      cmd_crc32 = $< > $@
1581da177e4SLinus Torvalds
1591da177e4SLinus Torvalds$(obj)/crc32table.h: $(obj)/gen_crc32table
1601da177e4SLinus Torvalds	$(call cmd,crc32)
161a77ad6eaSDavid Howells
162a77ad6eaSDavid Howells#
163a77ad6eaSDavid Howells# Build a fast OID lookip registry from include/linux/oid_registry.h
164a77ad6eaSDavid Howells#
165a77ad6eaSDavid Howellsobj-$(CONFIG_OID_REGISTRY) += oid_registry.o
166a77ad6eaSDavid Howells
167527897ccSTim Gardner$(obj)/oid_registry.o: $(obj)/oid_registry_data.c
168a77ad6eaSDavid Howells
169a77ad6eaSDavid Howells$(obj)/oid_registry_data.c: $(srctree)/include/linux/oid_registry.h \
170a77ad6eaSDavid Howells			    $(src)/build_OID_registry
171a77ad6eaSDavid Howells	$(call cmd,build_OID_registry)
172a77ad6eaSDavid Howells
173a77ad6eaSDavid Howellsquiet_cmd_build_OID_registry = GEN     $@
174a77ad6eaSDavid Howells      cmd_build_OID_registry = perl $(srctree)/$(src)/build_OID_registry $< $@
175a77ad6eaSDavid Howells
176a77ad6eaSDavid Howellsclean-files	+= oid_registry_data.c
177