Makefile.in 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515
  1. # Makefile for uClibc
  2. #
  3. # Copyright (C) 2000-2008 Erik Andersen <andersen@uclibc.org>
  4. #
  5. # Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
  6. #
  7. #--------------------------------------------------------------
  8. # You shouldn't need to mess with anything beyond this point...
  9. #--------------------------------------------------------------
  10. clean_targets := clean realclean distclean \
  11. objclean-y headers_clean-y CLEAN_utils
  12. noconfig_targets := menuconfig config oldconfig silentoldconfig randconfig \
  13. defconfig allyesconfig allnoconfig \
  14. release dist tags help
  15. include $(top_srcdir)Rules.mak
  16. sub_headers := headers
  17. ifeq ($(HAVE_DOT_CONFIG),y)
  18. all: pregen libs
  19. libs: pregen
  20. # In this section, we need .config
  21. -include $(top_builddir).config.cmd
  22. else # ifeq ($(HAVE_DOT_CONFIG),y)
  23. all: menuconfig
  24. headers:
  25. @echo "Need to make a config file first, run: make menuconfig"
  26. @false
  27. endif # ifeq ($(HAVE_DOT_CONFIG),y)
  28. include $(top_srcdir)ldso/Makefile.in
  29. include $(top_srcdir)libcrypt/Makefile.in
  30. include $(top_srcdir)libintl/Makefile.in
  31. include $(top_srcdir)libm/Makefile.in
  32. include $(top_srcdir)libnsl/Makefile.in
  33. include $(top_srcdir)libresolv/Makefile.in
  34. include $(top_srcdir)libutil/Makefile.in
  35. include $(top_srcdir)libpthread/Makefile.in
  36. include $(top_srcdir)librt/Makefile.in
  37. include $(top_srcdir)libubacktrace/Makefile.in
  38. include $(top_srcdir)extra/locale/Makefile.in
  39. # last included to catch all the objects added by others (locales/threads)
  40. include $(top_srcdir)libc/Makefile.in
  41. conf := $(top_builddir)extra/config/conf
  42. mconf := $(top_builddir)extra/config/mconf
  43. ifeq ($(HAVE_DOT_CONFIG),y)
  44. # If the .config changes then we have to make sure that our includes are
  45. # updated properly. This would normally work by saying that the headers
  46. # have uClibc_config.h as prerequisite but since we _symlink_ the headers
  47. # and do not (?) want to rely on 'make -L' we better update them right here,
  48. # on spot to save us from alot of hazzle.
  49. $(top_builddir)include/bits/uClibc_config.h: $(conf) $(KCONFIG_CONFIG) $(top_srcdir)extra/scripts/conf-header.sh | $(top_builddir)include/bits $(top_builddir)include/config
  50. @$(disp_gen)
  51. $(Q)@$< -s $(top_srcdir)extra/Configs/Config.in
  52. $(Q)$(top_srcdir)extra/scripts/conf-header.sh $(KCONFIG_CONFIG) > $@
  53. $(Q)$(MAKE) headers-y
  54. # The above doesn't work for threads, though. Just using check-symlinks for now.
  55. # XXX: FIXME: this is ugly
  56. MAKEFLAGS += -L
  57. $(top_builddir)include/config/linuxthreads/old.h $(top_builddir)include/config/linuxthreads/new.h:
  58. @true
  59. # For the moment, we have to keep re-running this target
  60. # because the fix includes scripts rely on pre-processers
  61. # in order to generate the headers correctly :(. That
  62. # means we can't use the $(HOSTCC) in order to get the
  63. # correct output.
  64. ifeq ($(ARCH_USE_MMU),y)
  65. export header_extra_args =
  66. else
  67. export header_extra_args = -n
  68. endif
  69. HEADERS_BITS_COMMON := $(notdir $(wildcard $(top_srcdir)libc/sysdeps/linux/common/bits/*.h))
  70. HEADERS_BITS_ARCH := $(notdir $(wildcard $(top_srcdir)libc/sysdeps/linux/$(TARGET_ARCH)/bits/*.h))
  71. HEADERS_BITS_SUBARCH :=
  72. ifneq ($(TARGET_SUBARCH),)
  73. HEADERS_BITS_SUBARCH := $(notdir $(wildcard $(top_srcdir)libc/sysdeps/linux/$(TARGET_ARCH)/bits/$(TARGET_SUBARCH)/*.h))
  74. endif
  75. ifneq ($(HEADERS_BITS_PTHREAD),)
  76. HEADERS_BITS_ARCH := $(filter-out $(HEADERS_BITS_PTHREAD),$(HEADERS_BITS_ARCH))
  77. HEADERS_BITS_SUBARCH:= $(filter-out $(HEADERS_BITS_PTHREAD),$(HEADERS_BITS_SUBARCH))
  78. endif
  79. HEADERS_BITS_COMMON := $(filter-out $(HEADERS_BITS_ARCH) $(HEADERS_BITS_SUBARCH) $(HEADERS_BITS_PTHREAD),$(HEADERS_BITS_COMMON))
  80. HEADERS_SYS_COMMON := $(notdir $(wildcard $(top_srcdir)libc/sysdeps/linux/common/sys/*.h))
  81. HEADERS_SYS_ARCH := $(notdir $(wildcard $(top_srcdir)libc/sysdeps/linux/$(TARGET_ARCH)/sys/*.h))
  82. HEADERS_SYS_COMMON := $(filter-out $(HEADERS_SYS_ARCH),$(HEADERS_SYS_COMMON))
  83. ALL_HEADERS_COMMON := $(top_builddir)include/fpu_control.h \
  84. $(top_builddir)include/jmpbuf-offsets.h \
  85. $(top_builddir)include/jmpbuf-unwind.h \
  86. $(top_builddir)include/dl-osinfo.h \
  87. $(top_builddir)include/hp-timing.h \
  88. $(top_builddir)include/not-cancel.h
  89. ALL_HEADERS_BITS_COMMON := $(addprefix $(top_builddir)include/bits/,$(HEADERS_BITS_COMMON))
  90. ALL_HEADERS_BITS_ARCH := $(addprefix $(top_builddir)include/bits/,$(HEADERS_BITS_ARCH))
  91. ifneq ($(TARGET_SUBARCH),)
  92. ALL_HEADERS_BITS_SUBARCH := $(addprefix $(top_builddir)include/bits/,$(HEADERS_BITS_SUBARCH))
  93. else
  94. ALL_HEADERS_BITS_SUBARCH :=
  95. endif
  96. ALL_HEADERS_SYS_COMMON := $(addprefix $(top_builddir)include/sys/,$(HEADERS_SYS_COMMON))
  97. ALL_HEADERS_SYS_ARCH := $(addprefix $(top_builddir)include/sys/,$(HEADERS_SYS_ARCH))
  98. target-headers-sysdep := \
  99. $(ALL_HEADERS_COMMON) \
  100. $(ALL_HEADERS_BITS_COMMON) \
  101. $(ALL_HEADERS_BITS_ARCH) \
  102. $(ALL_HEADERS_BITS_SUBARCH) \
  103. $(ALL_HEADERS_SYS_COMMON) \
  104. $(ALL_HEADERS_SYS_ARCH) \
  105. $(ALL_HEADERS_BITS_PTHREAD)
  106. $(top_builddir)include/fpu_control.h $(top_builddir)include/jmpbuf-offsets.h $(top_builddir)include/jmpbuf-unwind.h:
  107. @$(disp_ln)
  108. $(Q)[ -r $(top_srcdir)libc/sysdeps/linux/$(TARGET_ARCH)/$(@F) ] && \
  109. $(LN) -fs $(call rel_srcdir)libc/sysdeps/linux/$(TARGET_ARCH)/$(@F) $@ || \
  110. $(LN) -fs $(call rel_srcdir)libc/sysdeps/linux/common/$(@F) $@
  111. $(top_builddir)include/dl-osinfo.h $(top_builddir)include/hp-timing.h $(top_builddir)include/not-cancel.h:
  112. $(do_ln) $(call rel_srcdir)libc/sysdeps/linux/common/$(@F) $@
  113. $(ALL_HEADERS_BITS_COMMON):
  114. $(do_ln) $(call rel_srcdir)libc/sysdeps/linux/common/bits/$(@F) $@
  115. $(ALL_HEADERS_BITS_ARCH):
  116. $(do_ln) $(call rel_srcdir)libc/sysdeps/linux/$(TARGET_ARCH)/bits/$(@F) $@
  117. ifneq ($(TARGET_SUBARCH),)
  118. $(ALL_HEADERS_BITS_SUBARCH):
  119. $(do_ln) $(call rel_srcdir)libc/sysdeps/linux/$(TARGET_ARCH)/bits/$(TARGET_SUBARCH)/$(@F) $@
  120. endif
  121. ifneq ($(strip $(ALL_HEADERS_SYS_COMMON)),)
  122. $(ALL_HEADERS_SYS_COMMON):
  123. $(do_ln) $(call rel_srcdir)libc/sysdeps/linux/common/sys/$(@F) $@
  124. endif
  125. ifneq ($(strip $(ALL_HEADERS_SYS_ARCH)),)
  126. $(ALL_HEADERS_SYS_ARCH):
  127. $(do_ln) $(call rel_srcdir)libc/sysdeps/linux/$(TARGET_ARCH)/sys/$(@F) $@
  128. endif
  129. $(target-headers-sysdep) $(pregen-headers-y): | $(top_builddir)include/bits $(top_builddir)include/sys
  130. HEADERCLEAN_common:
  131. $(do_rm) $(ALL_HEADERS_COMMON)
  132. headers_clean-y += HEADERCLEAN_common
  133. # The headers. Arch specific headers are specified via ARCH_HEADERS in
  134. # libc/sysdeps/linux/$(TARGET_ARCH)/Makefile.arch which appends those via
  135. # libc/sysdeps/linux/Makefile.commonarch to headers-y
  136. headers-y += $(target-headers-sysdep)
  137. headers: $(top_builddir)include/bits/uClibc_config.h | subdirs
  138. subdirs: $(addprefix $(top_builddir),$(subdirs))
  139. pregen-headers: $(top_builddir)include/bits/sysnum.h $(pregen-headers-y)
  140. pregen: headers pregen-headers
  141. $(Q)$(if $(UCLIBC_HAS_LOCALE),$(MAKE) -C extra/locale locale_headers)
  142. $(top_builddir)include/bits/sysnum.h: $(top_srcdir)extra/scripts/gen_bits_syscall_h.sh | $(top_builddir)include/bits
  143. @$(disp_gen)
  144. $(Q)set -e; \
  145. tmp=`mktemp $(top_builddir)include/bits/sysnum.h.XXXXXX 2>/dev/null || true`; \
  146. [ -z "$$tmp" ] && tmp='$(top_builddir)include/bits/sysnum.h.new'; \
  147. KERNEL_HEADERS="${KERNEL_HEADERS}" top_builddir="$(top_builddir)" CC="$(CC) $(CPU_CFLAGS)" $(SHELL) $< > $$tmp; \
  148. if cmp $(top_builddir)include/bits/sysnum.h $$tmp >/dev/null 2>&1; then \
  149. $(RM) $$tmp; \
  150. else \
  151. mv -f $$tmp $(top_builddir)include/bits/sysnum.h; \
  152. fi
  153. @# Ugly linux specific hack..
  154. $(Q)if grep -q __NR_ $@; then true; else \
  155. rm -f $@; \
  156. echo "ERROR: Could not generate syscalls."; \
  157. echo "Make sure that you have proper kernel headers."; \
  158. echo "Your .config in KERNEL_HEADERS=\"\" was set to:"; \
  159. echo "${KERNEL_HEADERS}"; \
  160. exit 1; \
  161. fi
  162. .PHONY: $(LOCAL_INSTALL_PATH)
  163. $(LOCAL_INSTALL_PATH):
  164. $(Q)$(MAKE) PREFIX=$(shell pwd)/$(LOCAL_INSTALL_PATH) RUNTIME_PREFIX=/ \
  165. DEVEL_PREFIX=/usr/ \
  166. HOSTCC="$(HOSTCC)" \
  167. install
  168. install: install_runtime install_dev
  169. RUNTIME_PREFIX_LIB_FROM_DEVEL_PREFIX_LIB=$(shell $(top_srcdir)extra/scripts/relative_path.sh $(DEVEL_PREFIX)$(MULTILIB_DIR) $(RUNTIME_PREFIX)$(MULTILIB_DIR))
  170. startfiles: $(crt-y)
  171. $(top_builddir)extra/scripts/unifdef: |$(top_builddir)extra/scripts
  172. $(top_builddir)extra/scripts/unifdef: $(top_srcdir)extra/scripts/unifdef.c
  173. $(hcompile.u)
  174. # Installs header files.
  175. # a "y" here means the feature is enabled and so we should *not* rm it.
  176. # if the option expands to nothing though, we can punt the headers.
  177. HEADERS_RM- := \
  178. internal \
  179. cancel.h \
  180. dl-osinfo.h \
  181. jmpbuf-offsets.h \
  182. jmpbuf-unwind.h \
  183. hp-timing.h \
  184. not-cancel.h \
  185. _lfs_64.h \
  186. bits/uClibc_arch_features.h \
  187. bits/kernel_sigaction.h \
  188. bits/kernel_stat.h \
  189. bits/kernel_types.h \
  190. bits/libc-lock.h \
  191. bits/stdio-lock.h \
  192. bits/syscalls.h \
  193. bits/syscalls-common.h \
  194. bits/uClibc_fpmax.h \
  195. bits/uClibc_mutex.h \
  196. bits/uClibc_pthread.h \
  197. bits/uClibc_uintmaxtostr.h \
  198. bits/uClibc_uwchar.h \
  199. bits/uClibc_va_copy.h \
  200. bits/sigcontextinfo.h \
  201. bits/stackinfo.h \
  202. tls.h \
  203. rpc/des_crypt.h \
  204. rpc/key_prot.h \
  205. rpc/rpc_des.h
  206. ifeq ($(UCLIBC_STRICT_HEADERS),y)
  207. HEADERS_RM- += sgtty.h
  208. endif
  209. HEADERS_RM-$(HAVE_SHARED) += dlfcn.h bits/dlfcn.h
  210. HEADERS_RM-$(PTHREADS_DEBUG_SUPPORT) += thread_db.h
  211. HEADERS_RM-$(UCLIBC_HAS_BSD_ERR) += err.h
  212. HEADERS_RM-$(UCLIBC_HAS_CRYPT) += crypt.h
  213. HEADERS_RM-$(UCLIBC_HAS_EPOLL) += sys/epoll.h
  214. HEADERS_RM-$(UCLIBC_HAS_FENV) += fenv.h bits/fenv.h bits/fenvinline.h
  215. HEADERS_RM-$(UCLIBC_HAS_FLOATS) += complex.h fpu_control.h ieee754.h \
  216. math.h \
  217. tgmath.h \
  218. bits/math*.h
  219. HEADERS_RM-$(findstring y,$(UCLIBC_HAS_FTW)$(UCLIBC_HAS_NFTW)) += ftw.h
  220. HEADERS_RM-$(UCLIBC_HAS_FTS) += fts.h
  221. HEADERS_RM-$(UCLIBC_HAS_GETTEXT_AWARENESS) += libintl.h
  222. HEADERS_RM-$(UCLIBC_HAS_GLIBC_CUSTOM_PRINTF) += printf.h
  223. HEADERS_RM-$(UCLIBC_HAS_GLOB) += glob.h
  224. HEADERS_RM-$(UCLIBC_HAS_GNU_ERROR) += error.h
  225. HEADERS_RM-$(UCLIBC_HAS_GNU_GETOPT)$(UCLIBC_HAS_GETOPT_LONG) += getopt.h
  226. HEADERS_RM-$(UCLIBC_HAS_IPV6) += netinet/ip6.h netinet/icmp6.h
  227. HEADERS_RM-$(UCLIBC_HAS_BACKTRACE) += execinfo.h
  228. HEADERS_RM-$(UCLIBC_HAS_LOCALE) += iconv.h bits/uClibc_ctype.h
  229. HEADERS_RM-$(UCLIBC_HAS_PTY) += pty.h
  230. HEADERS_RM-$(UCLIBC_HAS_REALTIME) += mqueue.h bits/mqueue.h sched.h \
  231. bits/sched.h \
  232. semaphore.h
  233. HEADERS_RM-$(UCLIBC_HAS_REGEX) += regex.h regexp.h
  234. HEADERS_RM-$(UCLIBC_HAS_RPC) += rpc
  235. HEADERS_RM-$(UCLIBC_HAS_SHADOW) += shadow.h
  236. HEADERS_RM-$(UCLIBC_HAS_SOCKET) += sys/socket.h bits/socket.h sys/socketvar.h bits/socket_type.h
  237. HEADERS_RM-$(UCLIBC_HAS_SYSLOG) += syslog.h sys/syslog.h bits/syslog*.h
  238. HEADERS_RM-$(UCLIBC_HAS_THREADS) += *thread*.h semaphore.h \
  239. bits/*thread*.h \
  240. bits/initspin.h
  241. HEADERS_RM-$(UCLIBC_HAS_THREADS_NATIVE) += atomic.h bits/atomic.h
  242. HEADERS_RM-$(UCLIBC_HAS_UTMPX) += bits/utmpx.h utmpx.h
  243. HEADERS_RM-$(UCLIBC_HAS_WCHAR) += wchar.h wctype.h
  244. HEADERS_RM-$(UCLIBC_HAS_WORDEXP) += wordexp.h
  245. HEADERS_RM-$(UCLIBC_HAS_XATTR) += sys/xattr.h
  246. HEADERS_RM-$(UCLIBC_HAS_XLOCALE) += xlocale.h
  247. HEADERS_RM-$(UCLIBC_LINUX_SPECIFIC) += \
  248. sys/cachectl.h \
  249. sys/eventfd.h \
  250. sys/fsuid.h \
  251. bits/inotify.h \
  252. sys/inotify.h \
  253. sys/kdaemon.h \
  254. sys/perm.h \
  255. sys/personality.h \
  256. sys/prctl.h \
  257. sys/reboot.h \
  258. sys/sendfile.h \
  259. bits/signalfd.h \
  260. sys/signalfd.h \
  261. bits/statfs.h \
  262. sys/statfs.h \
  263. sys/swap.h \
  264. sys/sysctl.h \
  265. sys/sysinfo.h \
  266. bits/timerfd.h \
  267. sys/timerfd.h \
  268. sys/sysmips.h \
  269. sys/vfs.h
  270. HEADERS_RM-$(UCLIBC_SUPPORT_AI_ADDRCONFIG) += ifaddrs.h
  271. HEADERS_RM-$(UCLIBC_SV4_DEPRECATED) += ustat.h sys/ustat.h bits/ustat.h
  272. HEADERS_RM-$(UCLIBC_SUSV3_LEGACY) += sys/timeb.h regexp.h
  273. HEADERS_RM-$(UCLIBC_SUSV4_LEGACY) += utime.h ucontext.h
  274. HEADERS_RM-$(UCLIBC_HAS_ADVANCED_REALTIME) += spawn.h
  275. ifneq ($(findstring install,$(MAKECMDGOALS)),)
  276. $(addprefix $(PREFIX)$(DEVEL_PREFIX),include $(MULTILIB_DIR)):
  277. $(do_mkdir)
  278. # avoid warning about duplicate targets in rule or overrides
  279. ifneq ($(abspath $(RUNTIME_PREFIX)$(MULTILIB_DIR)),$(abspath $(DEVEL_PREFIX)$(MULTILIB_DIR)))
  280. $(PREFIX)$(RUNTIME_PREFIX)$(MULTILIB_DIR):
  281. $(do_mkdir)
  282. endif
  283. endif
  284. install_headers: headers $(top_builddir)extra/scripts/unifdef | $(PREFIX)$(DEVEL_PREFIX)include
  285. @$(call disp_install,"include -> $(PREFIX)$(DEVEL_PREFIX)include")
  286. $(Q)top_builddir=$(top_builddir) \
  287. $(top_srcdir)extra/scripts/install_headers.sh \
  288. include $(PREFIX)$(DEVEL_PREFIX)include
  289. ifneq ($(O),) # only run this step in O is set i.e. make O=/my/builddir/ ..
  290. @$(call disp_install,"$(top_builddir)/include -> $(PREFIX)$(DEVEL_PREFIX)include")
  291. $(Q)top_builddir=$(top_builddir) \
  292. $(top_srcdir)extra/scripts/install_headers.sh \
  293. $(top_builddir)/include $(PREFIX)$(DEVEL_PREFIX)include
  294. endif
  295. $(Q)cd $(PREFIX)$(DEVEL_PREFIX)include && $(RM) -r $(HEADERS_RM-)
  296. ifeq ($(UCLIBC_HAS_WCHAR),)
  297. $(Q)cd $(PREFIX)$(DEVEL_PREFIX)include && mv -f wchar-stub.h wchar.h
  298. else
  299. $(Q)cd $(PREFIX)$(DEVEL_PREFIX)include && $(RM) -f wchar-stub.h
  300. endif
  301. # Installs startfiles
  302. install_startfiles: startfiles | $(PREFIX)$(DEVEL_PREFIX)$(MULTILIB_DIR)
  303. -$(INSTALL) -m 644 $(startfiles) $(PREFIX)$(DEVEL_PREFIX)$(MULTILIB_DIR)/
  304. # Installs development library links.
  305. install_dev: install_headers install_runtime install_startfiles | $(PREFIX)$(DEVEL_PREFIX)$(MULTILIB_DIR)
  306. -$(INSTALL) -m 644 $(top_builddir)lib/*.a $(PREFIX)$(DEVEL_PREFIX)$(MULTILIB_DIR)/
  307. ifeq ($(HAVE_SHARED),y)
  308. for i in `cd $(top_builddir) && find lib/ -type l -name 'lib[a-zA-Z]*.so' | \
  309. $(SED) -e 's/lib\///'` ; do \
  310. $(LN) -sf $(RUNTIME_PREFIX_LIB_FROM_DEVEL_PREFIX_LIB)$$i.$(ABI_VERSION) \
  311. $(PREFIX)$(DEVEL_PREFIX)$(MULTILIB_DIR)/$$i; \
  312. done
  313. ifeq ($(HARDWIRED_ABSPATH),y)
  314. if [ -f $(top_builddir)lib/libc.so -a -f $(PREFIX)$(RUNTIME_PREFIX)$(MULTILIB_DIR)/$(SHARED_LIBNAME) ] ; then \
  315. $(RM) $(PREFIX)$(DEVEL_PREFIX)$(MULTILIB_DIR)/libc.so; \
  316. $(SED) -e 's:$(NONSHARED_LIBNAME):$(DEVEL_PREFIX)$(MULTILIB_DIR)/$(NONSHARED_LIBNAME):' \
  317. -e 's:$(SHARED_LIBNAME):$(RUNTIME_PREFIX)$(MULTILIB_DIR)/$(SHARED_LIBNAME):' \
  318. -e 's:$(UCLIBC_LDSO):$(RUNTIME_PREFIX)$(MULTILIB_DIR)/$(UCLIBC_LDSO):' \
  319. $(top_builddir)lib/libc.so > $(PREFIX)$(DEVEL_PREFIX)$(MULTILIB_DIR)/libc.so; \
  320. $(SED) -i -e 's://:/:g' $(PREFIX)$(DEVEL_PREFIX)$(MULTILIB_DIR)/libc.so; \
  321. fi
  322. else
  323. -$(INSTALL) -m 755 $(top_builddir)lib/libc.so $(PREFIX)$(DEVEL_PREFIX)$(MULTILIB_DIR)/
  324. endif
  325. echo "$(UBACKTRACE_ASNEEDED)" >> $(PREFIX)$(DEVEL_PREFIX)$(MULTILIB_DIR)/libc.so
  326. ifeq ($(UCLIBC_HAS_THREADS),y)
  327. ifneq ($(LINUXTHREADS_OLD),y)
  328. ifeq ($(HARDWIRED_ABSPATH),y)
  329. if [ -f $(top_builddir)lib/libpthread.so -a -f $(PREFIX)$(RUNTIME_PREFIX)$(MULTILIB_DIR)/libpthread.so.$(ABI_VERSION) ] ; then \
  330. $(RM) $(PREFIX)$(DEVEL_PREFIX)$(MULTILIB_DIR)/libpthread.so; \
  331. cp $(top_srcdir)extra/scripts/format.lds $(PREFIX)$(DEVEL_PREFIX)$(MULTILIB_DIR)/libpthread.so; \
  332. echo "GROUP ( $(RUNTIME_PREFIX)$(MULTILIB_DIR)/libpthread.so.$(ABI_VERSION) $(DEVEL_PREFIX)$(MULTILIB_DIR)/libpthread_nonshared.a )" \
  333. >> $(PREFIX)$(DEVEL_PREFIX)$(MULTILIB_DIR)/libpthread.so; \
  334. $(SED) -i -e 's://:/:g' $(PREFIX)$(DEVEL_PREFIX)$(MULTILIB_DIR)/libpthread.so; \
  335. fi
  336. else
  337. -$(INSTALL) -m 755 $(top_builddir)lib/libpthread.so $(PREFIX)$(DEVEL_PREFIX)$(MULTILIB_DIR)/
  338. endif
  339. endif
  340. endif
  341. ifeq ($(PTHREADS_DEBUG_SUPPORT),y)
  342. $(LN) -sf $(RUNTIME_PREFIX_LIB_FROM_DEVEL_PREFIX_LIB)libthread_db.so.1 \
  343. $(PREFIX)$(DEVEL_PREFIX)$(MULTILIB_DIR)/libthread_db.so
  344. endif
  345. ifeq ($(DOPIC),y)
  346. # # If we build shared libraries then the static libs are PIC...
  347. # # Make _pic.a symlinks to make mklibs.py and similar tools happy.
  348. if [ -d $(top_builddir)lib ] ; then \
  349. for i in `cd $(top_builddir) && find lib/ -type f -name 'lib*.a' | $(SED) -e 's/lib\///'` ; do \
  350. $(LN) -sf $$i $(PREFIX)$(DEVEL_PREFIX)$(MULTILIB_DIR)/`echo $$i \
  351. | $(SED) -e 's/\.a$$/_pic.a/'`; \
  352. done ; \
  353. fi
  354. endif
  355. endif
  356. ifeq ($(UCLIBC_FORMAT_SHARED_FLAT),y)
  357. for file in $(top_builddir)lib/lib*.gdb; do \
  358. if test -f $$file; then \
  359. $(INSTALL) -m 755 $$file $(PREFIX)$(DEVEL_PREFIX)$(MULTILIB_DIR); \
  360. $(INSTALL) -m 755 `echo $$file | $(SED) 's/\.gdb$$//'` \
  361. $(PREFIX)$(DEVEL_PREFIX)$(MULTILIB_DIR); \
  362. fi; \
  363. done
  364. endif
  365. # Installs run-time libraries
  366. install_runtime: all | $(PREFIX)$(RUNTIME_PREFIX)$(MULTILIB_DIR)
  367. ifeq ($(HAVE_SHARED),y)
  368. $(INSTALL) -m 755 $(top_builddir)lib/lib*-$(VERSION).so \
  369. $(PREFIX)$(RUNTIME_PREFIX)$(MULTILIB_DIR)
  370. (cd $(top_builddir)lib && $(TAR) --exclude=$(UCLIBC_LDSO_NAME).so.lds -cf - *.so.*) \
  371. | $(TAR) -xf - -C $(PREFIX)$(RUNTIME_PREFIX)$(MULTILIB_DIR)
  372. @if [ -x $(top_builddir)lib/$(UCLIBC_LDSO_NAME)-$(VERSION).so ] ; then \
  373. set -e; \
  374. $(SHELL_SET_X); \
  375. $(INSTALL) -m 755 $(top_builddir)lib/$(UCLIBC_LDSO_NAME)-$(VERSION).so \
  376. $(PREFIX)$(RUNTIME_PREFIX)$(MULTILIB_DIR); \
  377. fi
  378. endif
  379. utils: | pregen
  380. $(Q)$(MAKE) CROSS_COMPILE="$(CROSS_COMPILE)" CC="$(CC)" -C utils $@
  381. # Installs helper applications, such as 'ldd' and 'ldconfig'
  382. install_utils: utils
  383. $(Q)$(MAKE) CROSS_COMPILE="$(CROSS_COMPILE)" CC="$(CC)" -C utils utils_install
  384. endif # ifeq ($(HAVE_DOT_CONFIG),y)
  385. hostutils: | pregen
  386. $(Q)$(MAKE) CROSS_COMPILE="$(CROSS_COMPILE)" CC="$(CC)" HOSTCC="$(HOSTCC)" DOTHOST=.host -C utils $@
  387. install_hostutils: hostutils
  388. $(Q)$(MAKE) CROSS_COMPILE="$(CROSS_COMPILE)" CC="$(CC)" HOSTCC="$(HOSTCC)" DOTHOST=.host -C utils utils_install
  389. $(addprefix $(top_builddir),include include/bits include/sys include/config lib extra/config/lxdialog extra/locale extra/scripts $(subdirs)):
  390. $(do_mkdir)
  391. # configuration
  392. # ---------------------------------------------------------------------------
  393. $(conf) $(mconf): | $(top_builddir)include/config $(top_builddir)extra/config/lxdialog
  394. $(Q)$(MAKE) -C extra/config $(@F)
  395. arch-defconfigs := $(notdir $(wildcard $(top_srcdir)extra/Configs/defconfigs/$(ARCH)/*_defconfig))
  396. menuconfig: $(mconf)
  397. $(Q)$< extra/Configs/Config.in
  398. config: $(conf)
  399. $(Q)$< extra/Configs/Config.in
  400. oldconfig: $(conf)
  401. $(Q)$< -o extra/Configs/Config.in
  402. silentoldconfig: $(conf)
  403. $(Q)$< -s extra/Configs/Config.in
  404. randconfig: $(conf)
  405. $(Q)$< -r extra/Configs/Config.in
  406. allyesconfig: $(conf)
  407. $(Q)$< -y extra/Configs/Config.in
  408. $(SED) -i -e "s/^DODEBUG=.*/# DODEBUG is not set/" \
  409. -e "s/^DOASSERTS=.*/# DOASSERTS is not set/" \
  410. -e "s/^SUPPORT_LD_DEBUG_EARLY=.*/# SUPPORT_LD_DEBUG_EARLY is not set/" \
  411. -e "s/^SUPPORT_LD_DEBUG=.*/# SUPPORT_LD_DEBUG is not set/" \
  412. -e "s/^UCLIBC_MJN3_ONLY=.*/# UCLIBC_MJN3_ONLY is not set/" \
  413. $(KCONFIG_CONFIG)
  414. $(Q)$< -o extra/Configs/Config.in
  415. allnoconfig: $(conf)
  416. $(Q)$< -n extra/Configs/Config.in
  417. cmd_defconfig = $(Q)$< -D extra/Configs/defconfigs/$(ARCH)/$@ extra/Configs/Config.in
  418. defconfig: $(conf) ; $(cmd_defconfig)
  419. %_defconfig: $(conf) ; $(cmd_defconfig)
  420. menuconfig-clean-y:
  421. $(Q)$(MAKE) -C extra/config CLEAN_extra/config
  422. # The find here should continue to work as long as we are only symlinking
  423. # headers in to include/. I don't see this changing to anything else, so
  424. # it should be fine.
  425. include_clean:
  426. $(SECHO) " CLEAN include"
  427. $(Q)$(RM) -r $(top_builddir)include/bits
  428. $(Q)find $(top_builddir)include/ -type l -exec rm -f {} +
  429. clean: include_clean
  430. $(Q)$(RM) -r $(top_builddir)lib
  431. @$(MAKE) -C utils CLEAN_utils
  432. +$(MAKE) -s -C test clean
  433. $(Q)$(RM) $(top_builddir)extra/scripts/unifdef
  434. $(Q)$(RM) -r $(LOCAL_INSTALL_PATH)
  435. distclean: clean
  436. -find . \( -name core -o -name \*.orig -o -name \*~ -o -name .\*.dep \) -exec $(RM) {} \;
  437. $(RM) $(top_builddir).config $(top_builddir).config.old $(top_builddir).config.cmd
  438. $(RM) $(top_builddir)extra/locale/*.tgz
  439. $(MAKE) -C extra/config distclean
  440. dist release:
  441. $(RM) ../uClibc-$(VERSION).tar
  442. git archive --format=tar --prefix=uClibc-$(VERSION)/ HEAD \
  443. > ../uClibc-$(VERSION).tar
  444. cat ../uClibc-$(VERSION).tar | bzip2 -c9 > ../uClibc-$(VERSION).tar.bz2
  445. cat ../uClibc-$(VERSION).tar | xz -e -c8 > ../uClibc-$(VERSION).tar.xz
  446. du -b ../uClibc-$(VERSION).tar.{bz2,xz}
  447. test check: test_compile
  448. $(Q)$(MAKE) -C test
  449. test_compile: $(LOCAL_INSTALL_PATH)
  450. $(Q)$(MAKE) -C test compile