xref: /openbmc/linux/lib/Makefile (revision 446f24d1)
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
18446f24d1SStephen Boydobj-$(CONFIG_ARCH_HAS_DEBUG_STRICT_USER_COPY_CHECKS) += usercopy.o
1974588d8bSHaavard Skinnemoenlib-$(CONFIG_MMU) += ioremap.o
20ccb46000SAndrew Mortonlib-$(CONFIG_SMP) += cpumask.o
21ccb46000SAndrew Morton
224af679cdSPeter Zijlstralib-y	+= kobject.o klist.o
231da177e4SLinus Torvalds
24d3de851aSDavid Brownellobj-y += bcd.o div64.o sort.o parser.o halfmd4.o debug_locks.o random32.o \
253c9f3681SJames Bottomley	 bust_spinlocks.o hexdump.o kasprintf.o bitmap.o scatterlist.o \
2616c7fa05SAndy Shevchenko	 gcd.o lcm.o list_sort.o uuid.o flex_array.o \
27c759b35eSStefani Seibold	 bsearch.o find_last_bit.o find_next_bit.o llist.o memweight.o kfifo.o
2816c7fa05SAndy Shevchenkoobj-y += string_helpers.o
2916c7fa05SAndy Shevchenkoobj-$(CONFIG_TEST_STRING_HELPERS) += test-string_helpers.o
3033ee3b2eSAlexey Dobriyanobj-y += kstrtox.o
3133ee3b2eSAlexey Dobriyanobj-$(CONFIG_TEST_KSTRTOX) += test-kstrtox.o
321da177e4SLinus Torvalds
331da177e4SLinus Torvaldsifeq ($(CONFIG_DEBUG_KOBJECT),y)
341da177e4SLinus TorvaldsCFLAGS_kobject.o += -DDEBUG
351da177e4SLinus TorvaldsCFLAGS_kobject_uevent.o += -DDEBUG
361da177e4SLinus Torvaldsendif
371da177e4SLinus Torvalds
385ea81769SAl Viroobj-$(CONFIG_GENERIC_IOMAP) += iomap.o
3966eab4dfSMichael S. Tsirkinobj-$(CONFIG_GENERIC_PCI_IOMAP) += pci_iomap.o
40928923c7SGeert Uytterhoevenobj-$(CONFIG_HAS_IOMEM) += iomap_copy.o devres.o
41928923c7SGeert Uytterhoevenobj-$(CONFIG_CHECK_SIGNATURE) += check_signature.o
42cae2ed9aSIngo Molnarobj-$(CONFIG_DEBUG_LOCKING_API_SELFTESTS) += locking-selftest.o
43fb1c8f93SIngo Molnarobj-$(CONFIG_DEBUG_SPINLOCK) += spinlock_debug.o
441da177e4SLinus Torvaldslib-$(CONFIG_RWSEM_GENERIC_SPINLOCK) += rwsem-spinlock.o
451da177e4SLinus Torvaldslib-$(CONFIG_RWSEM_XCHGADD_ALGORITHM) += rwsem.o
4622b361d1SOleg Nesterovlib-$(CONFIG_PERCPU_RWSEM) += percpu-rwsem.o
47d61931d8SBorislav Petkov
48d61931d8SBorislav PetkovCFLAGS_hweight.o = $(subst $(quote),,$(CONFIG_ARCH_HWEIGHT_CFLAGS))
49702a28b1SRandy Dunlapobj-$(CONFIG_GENERIC_HWEIGHT) += hweight.o
50d61931d8SBorislav Petkov
515db53f3eSJoern Engelobj-$(CONFIG_BTREE) += btree.o
5239c715b7SIngo Molnarobj-$(CONFIG_DEBUG_PREEMPT) += smp_processor_id.o
53199a9afcSDave Jonesobj-$(CONFIG_DEBUG_LIST) += list_debug.o
543ac7fe5aSThomas Gleixnerobj-$(CONFIG_DEBUG_OBJECTS) += debugobjects.o
551da177e4SLinus Torvalds
561da177e4SLinus Torvaldsifneq ($(CONFIG_HAVE_DEC_LOCK),y)
571da177e4SLinus Torvalds  lib-y += dec_and_lock.o
581da177e4SLinus Torvaldsendif
591da177e4SLinus Torvalds
60a5cfc1ecSAkinobu Mitaobj-$(CONFIG_BITREVERSE) += bitrev.o
618759ef32SOskar Schirmerobj-$(CONFIG_RATIONAL)	+= rational.o
621da177e4SLinus Torvaldsobj-$(CONFIG_CRC_CCITT)	+= crc-ccitt.o
637657ec1fSEvgeniy Polyakovobj-$(CONFIG_CRC16)	+= crc16.o
64f11f594eSMartin K. Petersenobj-$(CONFIG_CRC_T10DIF)+= crc-t10dif.o
653e7cbae7SIvo van Doornobj-$(CONFIG_CRC_ITU_T)	+= crc-itu-t.o
661da177e4SLinus Torvaldsobj-$(CONFIG_CRC32)	+= crc32.o
67ad241528SJan Nikitenkoobj-$(CONFIG_CRC7)	+= crc7.o
681da177e4SLinus Torvaldsobj-$(CONFIG_LIBCRC32C)	+= libcrc32c.o
697150962dSArend van Sprielobj-$(CONFIG_CRC8)	+= crc8.o
70f14f75b8SJes Sorensenobj-$(CONFIG_GENERIC_ALLOCATOR) += genalloc.o
711da177e4SLinus Torvalds
721da177e4SLinus Torvaldsobj-$(CONFIG_ZLIB_INFLATE) += zlib_inflate/
731da177e4SLinus Torvaldsobj-$(CONFIG_ZLIB_DEFLATE) += zlib_deflate/
741da177e4SLinus Torvaldsobj-$(CONFIG_REED_SOLOMON) += reed_solomon/
75437aa565SIvan Djelicobj-$(CONFIG_BCH) += bch.o
7664c70b1cSRichard Purdieobj-$(CONFIG_LZO_COMPRESS) += lzo/
7764c70b1cSRichard Purdieobj-$(CONFIG_LZO_DECOMPRESS) += lzo/
7824fa0402SLasse Collinobj-$(CONFIG_XZ_DEC) += xz/
79f5e70d0fSDavid Woodhouseobj-$(CONFIG_RAID6_PQ) += raid6/
801da177e4SLinus Torvalds
81889c92d2SH. Peter Anvinlib-$(CONFIG_DECOMPRESS_GZIP) += decompress_inflate.o
82889c92d2SH. Peter Anvinlib-$(CONFIG_DECOMPRESS_BZIP2) += decompress_bunzip2.o
83889c92d2SH. Peter Anvinlib-$(CONFIG_DECOMPRESS_LZMA) += decompress_unlzma.o
843ebe1243SLasse Collinlib-$(CONFIG_DECOMPRESS_XZ) += decompress_unxz.o
85cacb246fSAlbin Tonnerrelib-$(CONFIG_DECOMPRESS_LZO) += decompress_unlzo.o
86c8531ab3SH. Peter Anvin
8765df877aSDavid S. Millerobj-$(CONFIG_TEXTSEARCH) += textsearch.o
88df3fb93aSThomas Grafobj-$(CONFIG_TEXTSEARCH_KMP) += ts_kmp.o
898082e4edSPablo Neira Ayusoobj-$(CONFIG_TEXTSEARCH_BM) += ts_bm.o
906408f79cSThomas Grafobj-$(CONFIG_TEXTSEARCH_FSM) += ts_fsm.o
913cbc5640SRavikiran G Thirumalaiobj-$(CONFIG_SMP) += percpu_counter.o
92e65e1fc2SAl Viroobj-$(CONFIG_AUDIT_GENERIC) += audit.o
932de4ff7bSThomas Graf
946c654b5fSJohn W. Linvilleobj-$(CONFIG_SWIOTLB) += swiotlb.o
950291df8cSFUJITA Tomonoriobj-$(CONFIG_IOMMU_HELPER) += iommu-helper.o
966ff1cb35SAkinobu Mitaobj-$(CONFIG_FAULT_INJECTION) += fault-inject.o
978d438288SAkinobu Mitaobj-$(CONFIG_NOTIFIER_ERROR_INJECTION) += notifier-error-inject.o
98c9d221f8SAkinobu Mitaobj-$(CONFIG_CPU_NOTIFIER_ERROR_INJECT) += cpu-notifier-error-inject.o
99048b9c35SAkinobu Mitaobj-$(CONFIG_PM_NOTIFIER_ERROR_INJECT) += pm-notifier-error-inject.o
1009579f5bdSAkinobu Mitaobj-$(CONFIG_MEMORY_NOTIFIER_ERROR_INJECT) += memory-notifier-error-inject.o
101d526e85fSBenjamin Herrenschmidtobj-$(CONFIG_OF_RECONFIG_NOTIFIER_ERROR_INJECT) += \
102d526e85fSBenjamin Herrenschmidt	of-reconfig-notifier-error-inject.o
1036c654b5fSJohn W. Linville
1047664c5a1SJeremy Fitzhardingelib-$(CONFIG_GENERIC_BUG) += bug.o
1057664c5a1SJeremy Fitzhardinge
106bbc69863SRoland McGrathobj-$(CONFIG_HAVE_ARCH_TRACEHOOK) += syscall.o
107bbc69863SRoland McGrath
108e9d376f0SJason Baronobj-$(CONFIG_DYNAMIC_DEBUG) += dynamic_debug.o
109346e15beSJason Baron
110e9cc8bddSGeert Uytterhoevenobj-$(CONFIG_NLATTR) += nlattr.o
1111da177e4SLinus Torvalds
112b411b363SPhilipp Reisnerobj-$(CONFIG_LRU_CACHE) += lru_cache.o
113b411b363SPhilipp Reisner
114f2f45e5fSJoerg Roedelobj-$(CONFIG_DMA_API_DEBUG) += dma-debug.o
115f2f45e5fSJoerg Roedel
11626a28fa4SArnd Bergmannobj-$(CONFIG_GENERIC_CSUM) += checksum.o
11726a28fa4SArnd Bergmann
11809d4e0edSPaul Mackerrasobj-$(CONFIG_GENERIC_ATOMIC64) += atomic64.o
11909d4e0edSPaul Mackerras
12086a89380SLuca Barbieriobj-$(CONFIG_ATOMIC64_SELFTEST) += atomic64_test.o
12186a89380SLuca Barbieri
122c5485a7eSBruno Randolfobj-$(CONFIG_AVERAGE) += average.o
123c5485a7eSBruno Randolf
124c39649c3SBen Hutchingsobj-$(CONFIG_CPU_RMAP) += cpu_rmap.o
125c39649c3SBen Hutchings
12610f8113eSArend van Sprielobj-$(CONFIG_CORDIC) += cordic.o
12710f8113eSArend van Spriel
12875957ba3STom Herbertobj-$(CONFIG_DQL) += dynamic_queue_limits.o
12975957ba3STom Herbert
130d9c46b18SDmitry Kasatkinobj-$(CONFIG_MPILIB) += mpi/
1315e8898e9SDmitry Kasatkinobj-$(CONFIG_SIGNATURE) += digsig.o
132d9c46b18SDmitry Kasatkin
133c6df4b17SDavid Millerobj-$(CONFIG_CLZ_TAB) += clz_tab.o
134c6df4b17SDavid Miller
1359c1c21a0SAneesh Vobj-$(CONFIG_DDR) += jedec_ddr_data.o
1369c1c21a0SAneesh V
1372922585bSDavid S. Millerobj-$(CONFIG_GENERIC_STRNCPY_FROM_USER) += strncpy_from_user.o
138a08c5356SLinus Torvaldsobj-$(CONFIG_GENERIC_STRNLEN_USER) += strnlen_user.o
1392922585bSDavid S. Miller
1404ccf4beaSWolfram Sangobj-$(CONFIG_STMP_DEVICE) += stmp_device.o
1414ccf4beaSWolfram Sang
142ab253839SDavid Daneylibfdt_files = fdt.o fdt_ro.o fdt_wip.o fdt_rw.o fdt_sw.o fdt_strerror.o
143ab253839SDavid Daney$(foreach file, $(libfdt_files), \
144ab253839SDavid Daney	$(eval CFLAGS_$(file) = -I$(src)/../scripts/dtc/libfdt))
145ab253839SDavid Daneylib-$(CONFIG_LIBFDT) += $(libfdt_files)
146ab253839SDavid Daney
147910a742dSMichel Lespinasseobj-$(CONFIG_RBTREE_TEST) += rbtree_test.o
148fff3fd8aSMichel Lespinasseobj-$(CONFIG_INTERVAL_TREE_TEST) += interval_tree_test.o
149fff3fd8aSMichel Lespinasse
150fff3fd8aSMichel Lespinasseinterval_tree_test-objs := interval_tree_test_main.o interval_tree.o
151910a742dSMichel Lespinasse
15242d5ec27SDavid Howellsobj-$(CONFIG_ASN1) += asn1_decoder.o
15342d5ec27SDavid Howells
1541da177e4SLinus Torvaldshostprogs-y	:= gen_crc32table
1551da177e4SLinus Torvaldsclean-files	:= crc32table.h
1561da177e4SLinus Torvalds
1571da177e4SLinus Torvalds$(obj)/crc32.o: $(obj)/crc32table.h
1581da177e4SLinus Torvalds
1591da177e4SLinus Torvaldsquiet_cmd_crc32 = GEN     $@
1601da177e4SLinus Torvalds      cmd_crc32 = $< > $@
1611da177e4SLinus Torvalds
1621da177e4SLinus Torvalds$(obj)/crc32table.h: $(obj)/gen_crc32table
1631da177e4SLinus Torvalds	$(call cmd,crc32)
164a77ad6eaSDavid Howells
165a77ad6eaSDavid Howells#
166a77ad6eaSDavid Howells# Build a fast OID lookip registry from include/linux/oid_registry.h
167a77ad6eaSDavid Howells#
168a77ad6eaSDavid Howellsobj-$(CONFIG_OID_REGISTRY) += oid_registry.o
169a77ad6eaSDavid Howells
170527897ccSTim Gardner$(obj)/oid_registry.o: $(obj)/oid_registry_data.c
171a77ad6eaSDavid Howells
172a77ad6eaSDavid Howells$(obj)/oid_registry_data.c: $(srctree)/include/linux/oid_registry.h \
173a77ad6eaSDavid Howells			    $(src)/build_OID_registry
174a77ad6eaSDavid Howells	$(call cmd,build_OID_registry)
175a77ad6eaSDavid Howells
176a77ad6eaSDavid Howellsquiet_cmd_build_OID_registry = GEN     $@
177a77ad6eaSDavid Howells      cmd_build_OID_registry = perl $(srctree)/$(src)/build_OID_registry $< $@
178a77ad6eaSDavid Howells
179a77ad6eaSDavid Howellsclean-files	+= oid_registry_data.c
1800635eb8aSMatthew Garrett
1810635eb8aSMatthew Garrettobj-$(CONFIG_UCS2_STRING) += ucs2_string.o
182