Makefile.in 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353
  1. # Makefile for uClibc
  2. #
  3. # Copyright (C) 2000-2005 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. noconfig_targets := menuconfig config oldconfig randconfig \
  11. defconfig allyesconfig allnoconfig clean distclean \
  12. release dist tags
  13. include $(top_builddir)Rules.mak
  14. ifeq ($(HAVE_DOT_CONFIG),y)
  15. all: pregen libs
  16. # In this section, we need .config
  17. -include .config.cmd
  18. include $(top_srcdir)ldso/Makefile.in
  19. include $(top_srcdir)libcrypt/Makefile.in
  20. include $(top_srcdir)libintl/Makefile.in
  21. include $(top_srcdir)libm/Makefile.in
  22. include $(top_srcdir)libnsl/Makefile.in
  23. include $(top_srcdir)libresolv/Makefile.in
  24. include $(top_srcdir)librt/Makefile.in
  25. include $(top_srcdir)libutil/Makefile.in
  26. include $(top_srcdir)libpthread/Makefile.in
  27. # last included to catch all the objects added by others (locales/threads)
  28. include $(top_srcdir)libc/Makefile.in
  29. include/bits/uClibc_config.h: .config
  30. $(RM) -r include/bits
  31. $(INSTALL) -d include/bits
  32. @if [ ! -x extra/config/conf ] ; then \
  33. $(MAKE) -C extra/config conf; \
  34. fi
  35. @extra/config/conf -o $(top_srcdir)extra/Configs/Config.in
  36. # For the moment, we have to keep re-running this target
  37. # because the fix includes scripts rely on pre-processers
  38. # in order to generate the headers correctly :(. That
  39. # means we can't use the $(HOSTCC) in order to get the
  40. # correct output.
  41. ifeq ($(ARCH_HAS_MMU),y)
  42. export header_extra_args =
  43. else
  44. export header_extra_args = -n
  45. endif
  46. headers: include/bits/uClibc_config.h
  47. $(MAKE) headers-y
  48. @$(SHELL_SET_X); \
  49. $(top_srcdir)extra/scripts/fix_includes.sh \
  50. -k $(KERNEL_SOURCE) -t $(TARGET_ARCH) \
  51. $(header_extra_args)
  52. if [ -f libc/sysdeps/linux/$(TARGET_ARCH)/fpu_control.h ] ; then \
  53. $(LN) -fs ../libc/sysdeps/linux/$(TARGET_ARCH)/fpu_control.h include/ ; \
  54. else \
  55. $(LN) -fs ../libc/sysdeps/linux/common/fpu_control.h include/ ; \
  56. fi
  57. $(LN) -fs ../libc/sysdeps/linux/common/dl-osinfo.h include/
  58. @cd include/bits; \
  59. set -e; \
  60. for i in `ls ../../libc/sysdeps/linux/common/bits/*.h` ; do \
  61. $(LN) -fs $$i .; \
  62. done; \
  63. if [ -d ../../libc/sysdeps/linux/$(TARGET_ARCH)/bits ] ; then \
  64. for i in `ls ../../libc/sysdeps/linux/$(TARGET_ARCH)/bits/*.h` ; do \
  65. $(LN) -fs $$i .; \
  66. done; \
  67. fi
  68. @cd include/sys; \
  69. set -e; \
  70. for i in `ls ../../libc/sysdeps/linux/common/sys/*.h` ; do \
  71. $(LN) -fs $$i .; \
  72. done; \
  73. if [ -d ../../libc/sysdeps/linux/$(TARGET_ARCH)/sys ] ; then \
  74. for i in `ls ../../libc/sysdeps/linux/$(TARGET_ARCH)/sys/*.h` ; do \
  75. $(LN) -fs $$i .; \
  76. done; \
  77. fi
  78. @cd $(top_builddir); \
  79. set -e; \
  80. $(SHELL_SET_X); \
  81. top_builddir=. CC="$(CC)" /bin/sh extra/scripts/gen_bits_syscall_h.sh > include/bits/sysnum.h.new; \
  82. if cmp include/bits/sysnum.h include/bits/sysnum.h.new >/dev/null 2>&1; then \
  83. $(RM) include/bits/sysnum.h.new; \
  84. else \
  85. $(RM) include/bits/sysnum.h; \
  86. mv -f include/bits/sysnum.h.new include/bits/sysnum.h; \
  87. fi
  88. # Command used to download source code
  89. WGET:=wget --passive-ftp
  90. LOCALE_DATA_FILENAME:=uClibc-locale-030818.tgz
  91. pregen: headers
  92. ifeq ($(UCLIBC_DOWNLOAD_PREGENERATED_LOCALE_DATA),y)
  93. (cd $(top_builddir)extra/locale; \
  94. if [ ! -f $(LOCALE_DATA_FILENAME) ] ; then \
  95. $(WGET) http://www.uclibc.org/downloads/$(LOCALE_DATA_FILENAME) ; \
  96. fi )
  97. endif
  98. ifeq ($(UCLIBC_PREGENERATED_LOCALE_DATA),y)
  99. (cd $(top_builddir)extra/locale; zcat $(LOCALE_DATA_FILENAME) | tar -xvf -)
  100. endif
  101. ifeq ($(UCLIBC_HAS_LOCALE),y)
  102. $(MAKE) -C $(top_builddir)extra/locale locale_objs
  103. endif
  104. install: install_runtime install_dev
  105. RUNTIME_PREFIX_LIB_FROM_DEVEL_PREFIX_LIB=$(shell $(top_srcdir)extra/scripts/relative_path.sh $(DEVEL_PREFIX)lib $(RUNTIME_PREFIX)lib)
  106. # Installs header files.
  107. install_headers:
  108. $(INSTALL) -d $(PREFIX)$(DEVEL_PREFIX)include
  109. if [ "$(KERNEL_SOURCE)" == "$(DEVEL_PREFIX)" ] ; then \
  110. extra_exclude="--exclude include/linux --exclude include/asm'*'" ; \
  111. else \
  112. extra_exclude="" ; \
  113. fi ; \
  114. tar -chf - --exclude .svn $$extra_exclude include \
  115. | tar -xf - -C $(PREFIX)$(DEVEL_PREFIX)
  116. $(RM) $(PREFIX)$(DEVEL_PREFIX)include/ssp-internal.h
  117. $(RM) $(PREFIX)$(DEVEL_PREFIX)include/dl-osinfo.h
  118. ifneq ($(UCLIBC_HAS_FLOATS),y)
  119. # Remove floating point related headers since float support is disabled.
  120. $(RM) $(PREFIX)$(DEVEL_PREFIX)include/complex.h
  121. $(RM) $(PREFIX)$(DEVEL_PREFIX)include/fpu_control.h
  122. $(RM) $(PREFIX)$(DEVEL_PREFIX)include/ieee754.h
  123. $(RM) $(PREFIX)$(DEVEL_PREFIX)include/math.h
  124. $(RM) $(PREFIX)$(DEVEL_PREFIX)include/tgmath.h
  125. $(RM) $(PREFIX)$(DEVEL_PREFIX)include/bits/uClibc_fpmax.h
  126. endif
  127. ifneq ($(UCLIBC_HAS_WCHAR),y)
  128. # Remove wide char headers since wide char support is disabled.
  129. $(RM) $(PREFIX)$(DEVEL_PREFIX)include/wctype.h
  130. $(RM) $(PREFIX)$(DEVEL_PREFIX)include/wchar.h
  131. endif
  132. ifneq ($(UCLIBC_HAS_LOCALE),y)
  133. # Remove iconv header since locale support is disabled.
  134. $(RM) $(PREFIX)$(DEVEL_PREFIX)include/iconv.h
  135. endif
  136. ifneq ($(UCLIBC_HAS_GLIBC_CUSTOM_PRINTF),y)
  137. # Remove printf header since custom print specifier support is disabled.
  138. $(RM) $(PREFIX)$(DEVEL_PREFIX)include/printf.h
  139. endif
  140. ifneq ($(UCLIBC_HAS_XLOCALE),y)
  141. # Remove xlocale header since extended locale support is disabled.
  142. $(RM) $(PREFIX)$(DEVEL_PREFIX)include/xlocale.h
  143. endif
  144. ifneq ($(UCLIBC_HAS_GETTEXT_AWARENESS),y)
  145. # Remove libintl header since gettext support is disabled.
  146. $(RM) $(PREFIX)$(DEVEL_PREFIX)include/libintl.h
  147. endif
  148. ifneq ($(UCLIBC_HAS_REGEX),y)
  149. # Remove regex headers since regex support is disabled.
  150. $(RM) $(PREFIX)$(DEVEL_PREFIX)include/regex.h
  151. $(RM) $(PREFIX)$(DEVEL_PREFIX)include/regexp.h
  152. endif
  153. ifneq ($(UCLIBC_HAS_WORDEXP),y)
  154. # Remove wordexp header since wordexp support is disabled.
  155. $(RM) $(PREFIX)$(DEVEL_PREFIX)include/wordexp.h
  156. endif
  157. ifneq ($(UCLIBC_HAS_FTW),y)
  158. # Remove ftw header since ftw support is disabled.
  159. $(RM) $(PREFIX)$(DEVEL_PREFIX)include/ftw.h
  160. endif
  161. ifneq ($(UCLIBC_HAS_GLOB),y)
  162. # Remove glob header since glob support is disabled.
  163. $(RM) $(PREFIX)$(DEVEL_PREFIX)include/glob.h
  164. endif
  165. ifneq ($(UCLIBC_HAS_GNU_GETOPT),y)
  166. # Remove getopt header since gnu getopt support is disabled.
  167. $(RM) $(PREFIX)$(DEVEL_PREFIX)include/getopt.h
  168. endif
  169. ifneq ($(HAS_SHADOW),y)
  170. # Remove shadow header since shadow password support is disabled.
  171. $(RM) $(PREFIX)$(DEVEL_PREFIX)include/shadow.h
  172. endif
  173. ifneq ($(PTHREADS_DEBUG_SUPPORT),y)
  174. # Remove thread_db header since thread debug support is disabled.
  175. $(RM) $(PREFIX)$(DEVEL_PREFIX)include/thread_db.h
  176. endif
  177. ifneq ($(UCLIBC_HAS_THREADS),y)
  178. # Remove pthread headers since thread support is disabled.
  179. $(RM) $(PREFIX)$(DEVEL_PREFIX)include/*thread*.h
  180. $(RM) $(PREFIX)$(DEVEL_PREFIX)include/semaphore.h
  181. $(RM) $(PREFIX)$(DEVEL_PREFIX)include/bits/*thread*.h
  182. endif
  183. -@for i in `find $(PREFIX)$(DEVEL_PREFIX) -type d` ; do \
  184. chmod 755 $$i; chmod 644 $$i/*.h > /dev/null 2>&1; \
  185. done
  186. -chown -R `id | sed 's/^uid=\([0-9]*\).*gid=\([0-9]*\).*$$/\1:\2/'` $(PREFIX)$(DEVEL_PREFIX)
  187. # Installs development library links.
  188. install_dev: install_headers
  189. $(INSTALL) -d $(PREFIX)$(DEVEL_PREFIX)lib
  190. -$(INSTALL) -m 644 lib/*.[ao] $(PREFIX)$(DEVEL_PREFIX)lib/
  191. ifeq ($(HAVE_SHARED),y)
  192. for i in `find lib/ -type l -name 'lib[a-zA-Z]*.so' | \
  193. sed -e 's/lib\///'` ; do \
  194. $(LN) -sf $(RUNTIME_PREFIX_LIB_FROM_DEVEL_PREFIX_LIB)$$i.$(MAJOR_VERSION) \
  195. $(PREFIX)$(DEVEL_PREFIX)lib/$$i; \
  196. done
  197. if [ -f $(top_builddir)lib/libc.so -a -f $(PREFIX)$(RUNTIME_PREFIX)lib/$(SHARED_MAJORNAME) ] ; then \
  198. $(RM) $(PREFIX)$(DEVEL_PREFIX)lib/libc.so; \
  199. sed -e 's:$(NONSHARED_LIBNAME):$(DEVEL_PREFIX)lib/$(NONSHARED_LIBNAME):' \
  200. -e 's:$(SHARED_MAJORNAME):$(RUNTIME_PREFIX)lib/$(SHARED_MAJORNAME):' \
  201. -e 's:$(UCLIBC_LDSO):$(RUNTIME_PREFIX)lib/$(UCLIBC_LDSO):' \
  202. $(top_builddir)lib/libc.so > $(PREFIX)$(DEVEL_PREFIX)lib/libc.so; \
  203. fi
  204. ifeq ($(PTHREADS_DEBUG_SUPPORT),y)
  205. $(LN) -sf $(RUNTIME_PREFIX_LIB_FROM_DEVEL_PREFIX_LIB)libthread_db.so.1 \
  206. $(PREFIX)$(DEVEL_PREFIX)lib/libthread_db.so
  207. endif
  208. ifeq ($(DOPIC),y)
  209. # # If we build shared libraries then the static libs are PIC...
  210. # # Make _pic.a symlinks to make mklibs.py and similar tools happy.
  211. if [ -d lib ] ; then \
  212. for i in `find lib/ -type f -name 'lib*.a' | sed -e 's/lib\///'` ; do \
  213. $(LN) -sf $$i $(PREFIX)$(DEVEL_PREFIX)lib/`echo $$i \
  214. | sed -e 's/\.a$$/_pic.a/'`; \
  215. done ; \
  216. fi
  217. endif
  218. endif
  219. # Installs run-time libraries
  220. install_runtime:
  221. ifeq ($(HAVE_SHARED),y)
  222. $(INSTALL) -d $(PREFIX)$(RUNTIME_PREFIX)lib
  223. $(INSTALL) -m 644 lib/lib*-$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL).so \
  224. $(PREFIX)$(RUNTIME_PREFIX)lib
  225. cp -dRf lib/*.so.* $(PREFIX)$(RUNTIME_PREFIX)lib
  226. @if [ -x lib/ld-uClibc-$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL).so ] ; then \
  227. set -e; \
  228. $(SHELL_SET_X); \
  229. $(INSTALL) -m 755 lib/ld-uClibc-$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL).so \
  230. $(PREFIX)$(RUNTIME_PREFIX)lib; \
  231. fi
  232. endif
  233. utils:
  234. $(MAKE) CROSS="$(CROSS)" CC="$(CC)" -C utils
  235. # Installs helper applications, such as 'ldd' and 'ldconfig'
  236. install_utils: utils
  237. $(MAKE) CROSS="$(CROSS)" CC="$(CC)" -C utils install
  238. else # ifeq ($(HAVE_DOT_CONFIG),y)
  239. all: menuconfig
  240. headers:
  241. @echo "Need to make a config file first, run: make menuconfig"
  242. @false
  243. endif # ifeq ($(HAVE_DOT_CONFIG),y)
  244. # configuration
  245. # ---------------------------------------------------------------------------
  246. extra/config/conf:
  247. $(MAKE) -C extra/config conf
  248. extra/config/mconf:
  249. $(MAKE) -C extra/config ncurses mconf
  250. menuconfig: extra/config/mconf
  251. $(RM) -r include/bits
  252. $(INSTALL) -d include/bits
  253. @./extra/config/mconf extra/Configs/Config.in
  254. $(MAKE) headers
  255. config: extra/config/conf
  256. $(RM) -r include/bits
  257. $(INSTALL) -d include/bits
  258. @./extra/config/conf extra/Configs/Config.in
  259. oldconfig: extra/config/conf
  260. $(RM) -r include/bits
  261. $(INSTALL) -d include/bits
  262. @./extra/config/conf -o extra/Configs/Config.in
  263. randconfig: extra/config/conf
  264. $(RM) -r include/bits
  265. $(INSTALL) -d include/bits
  266. @./extra/config/conf -r extra/Configs/Config.in
  267. allyesconfig: extra/config/conf
  268. $(RM) -r include/bits
  269. $(INSTALL) -d include/bits
  270. @./extra/config/conf -y extra/Configs/Config.in
  271. sed -i -e "s/^DODEBUG=.*/# DODEBUG is not set/" .config
  272. sed -i -e "s/^DOASSERTS=.*/# DOASSERTS is not set/" .config
  273. sed -i -e "s/^SUPPORT_LD_DEBUG_EARLY=.*/# SUPPORT_LD_DEBUG_EARLY is not set/" .config
  274. sed -i -e "s/^SUPPORT_LD_DEBUG=.*/# SUPPORT_LD_DEBUG is not set/" .config
  275. sed -i -e "s/^UCLIBC_MJN3_ONLY=.*/# UCLIBC_MJN3_ONLY is not set/" .config
  276. @./extra/config/conf -o extra/Configs/Config.in
  277. allnoconfig: extra/config/conf
  278. $(RM) -r include/bits
  279. $(INSTALL) -d include/bits
  280. @./extra/config/conf -n extra/Configs/Config.in
  281. defconfig: extra/config/conf
  282. $(RM) -r include/bits
  283. $(INSTALL) -d include/bits
  284. @./extra/config/conf -d extra/Configs/Config.in
  285. clean:
  286. @$(RM) -r lib include/bits
  287. $(RM) lib*/*.a ldso/*/*.a libpthread/*/*.a
  288. $(RM) include/fpu_control.h include/dl-osinfo.h
  289. $(MAKE) -C extra/locale clean
  290. $(MAKE) headers_clean-y
  291. $(MAKE) -C test clean
  292. $(MAKE) -C utils clean
  293. @set -e; \
  294. for i in `(cd libc/sysdeps/linux/common/sys; ls *.h)` ; do \
  295. $(RM) include/sys/$$i; \
  296. done; \
  297. if [ -d libc/sysdeps/linux/$(TARGET_ARCH)/sys ] ; then \
  298. for i in `(cd libc/sysdeps/linux/$(TARGET_ARCH)/sys; ls *.h)` ; do \
  299. $(RM) include/sys/$$i; \
  300. done; \
  301. fi
  302. @$(RM) include/linux include/asm*
  303. -find . \( -name \*.o -o -name \*.os -o -name \*.oS \) -exec $(RM) {} \;
  304. distclean: clean
  305. -find . \( -name core -o -name \*.orig -o -name \*~ \) -exec $(RM) {} \;
  306. $(RM) .config .config.old .config.cmd
  307. $(RM) extra/locale/*.tgz
  308. $(MAKE) -C extra/config clean
  309. dist release:
  310. $(MAKE) -s distclean
  311. $(RM) -r ../uClibc-$(VERSION) ../uClibc-$(VERSION).tar.gz
  312. svn -q export . ../uClibc-$(VERSION)
  313. tar czf ../uClibc-$(VERSION).tar.gz -C .. uClibc-$(VERSION)
  314. du -b ../uClibc-$(VERSION).tar.gz
  315. check:
  316. $(MAKE) -C test