Makefile 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391
  1. # Makefile for uClibc
  2. #
  3. # Copyright (C) 2000 by Lineo, inc.
  4. # Copyright (C) 2000-2002 Erik Andersen <andersen@uclibc.org>
  5. #
  6. # This program is free software; you can redistribute it and/or modify it under
  7. # the terms of the GNU Library General Public License as published by the Free
  8. # Software Foundation; either version 2 of the License, or (at your option) any
  9. # later version.
  10. #
  11. # This program is distributed in the hope that it will be useful, but WITHOUT
  12. # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
  13. # FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more
  14. # details.
  15. #
  16. # You should have received a copy of the GNU Library General Public License
  17. # along with this program; if not, write to the Free Software Foundation, Inc.,
  18. # 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  19. # Makefile for uClibc
  20. #
  21. # Derived in part from the Linux-8086 C library, the GNU C Library, and several
  22. # other sundry sources. Files within this library are copyright by their
  23. # respective copyright holders.
  24. #--------------------------------------------------------------
  25. # You shouldn't need to mess with anything beyond this point...
  26. #--------------------------------------------------------------
  27. noconfig_targets := menuconfig config oldconfig randconfig \
  28. defconfig allyesconfig allnoconfig clean distclean \
  29. release tags TAGS
  30. TOPDIR=./
  31. include Rules.mak
  32. DIRS = extra ldso libc libcrypt libresolv libutil libm libpthread
  33. ifdef include_config
  34. all: headers subdirs shared utils finished
  35. # In this section, we need .config
  36. -include .config.cmd
  37. shared:
  38. ifeq ($(strip $(HAVE_SHARED)),y)
  39. @$(MAKE) -C libc shared
  40. @$(MAKE) -C ldso shared
  41. @$(MAKE) -C libcrypt shared
  42. @$(MAKE) -C libresolv shared
  43. @$(MAKE) -C libutil shared
  44. @$(MAKE) -C libm shared
  45. @$(MAKE) -C libpthread shared
  46. else
  47. @echo
  48. @echo Not building shared libraries...
  49. @echo
  50. endif
  51. finished: shared
  52. @echo
  53. @echo Finally finished compiling...
  54. @echo
  55. #
  56. # Target for uClinux distro
  57. #
  58. romfs:
  59. ifeq ($(strip $(HAVE_SHARED)),y)
  60. install -d $(ROMFSDIR)/lib
  61. install -m 644 lib/lib*-$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL).so \
  62. $(ROMFSDIR)/lib
  63. cp -a lib/*.so.* $(ROMFSDIR)/lib
  64. @if [ -x lib/ld-uClibc-$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL).so ] ; then \
  65. set -x -e; \
  66. install -m 755 lib/ld-uClibc-$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL).so \
  67. $(ROMFSDIR)/lib; \
  68. fi;
  69. endif
  70. include/bits/uClibc_config.h: .config
  71. @if [ ! -x ./extra/config/conf ] ; then \
  72. make -C extra/config; \
  73. fi;
  74. rm -rf include/bits
  75. mkdir -p include/bits
  76. @./extra/config/conf -o extra/Configs/Config.$(TARGET_ARCH)
  77. headers: include/bits/uClibc_config.h
  78. rm -f include/asm;
  79. @if [ "$(TARGET_ARCH)" = "powerpc" ];then \
  80. ln -fs $(KERNEL_SOURCE)/include/asm-ppc include/asm; \
  81. elif [ "$(TARGET_ARCH)" = "mips" ];then \
  82. ln -fs $(KERNEL_SOURCE)/include/asm-mips include/asm; \
  83. elif [ "$(TARGET_ARCH)" = "mipsel" ];then \
  84. ln -fs $(KERNEL_SOURCE)/include/asm-mips include/asm; \
  85. cd $(shell pwd)/libc/sysdeps/linux; \
  86. ln -fs mips mipsel; \
  87. cd $(shell pwd)/ldso/ldso; \
  88. ln -fs mips mipsel; \
  89. cd $(shell pwd)/libpthread/linuxthreads/sysdeps; \
  90. ln -fs mips mipsel; \
  91. elif [ "$(TARGET_ARCH)" = "cris" ];then \
  92. ln -fs $(KERNEL_SOURCE)/include/asm-cris include/asm; \
  93. else \
  94. if [ "$(UCLIBC_HAS_MMU)" != "y" ]; then \
  95. if [ -d $(KERNEL_SOURCE)/include/asm-$(TARGET_ARCH)nommu ] ; then \
  96. ln -fs $(KERNEL_SOURCE)/include/asm-$(TARGET_ARCH)nommu include/asm;\
  97. else \
  98. ln -fs $(KERNEL_SOURCE)/include/asm-$(TARGET_ARCH) include/asm; \
  99. fi; \
  100. else \
  101. ln -fs $(KERNEL_SOURCE)/include/asm-$(TARGET_ARCH) include/asm; \
  102. fi; \
  103. fi;
  104. @if [ ! -f include/asm/unistd.h ] ; then \
  105. set -e; \
  106. echo " "; \
  107. echo "The path '$(KERNEL_SOURCE)/include/asm' doesn't exist."; \
  108. echo "I bet you didn't set KERNEL_SOURCE, TARGET_ARCH or UCLIBC_HAS_MMU"; \
  109. echo "correctly when you configured uClibc. Please fix these settings."; \
  110. echo " "; \
  111. false; \
  112. fi;
  113. rm -f include/linux include/scsi
  114. ln -fs $(KERNEL_SOURCE)/include/linux include/linux
  115. ln -fs $(KERNEL_SOURCE)/include/scsi include/scsi
  116. @cd include/bits; \
  117. set -e; \
  118. for i in `ls ../../libc/sysdeps/linux/common/bits/*.h` ; do \
  119. ln -fs $$i .; \
  120. done; \
  121. if [ -d ../../libc/sysdeps/linux/$(TARGET_ARCH)/bits ] ; then \
  122. for i in `ls ../../libc/sysdeps/linux/$(TARGET_ARCH)/bits/*.h` ; do \
  123. ln -fs $$i .; \
  124. done; \
  125. fi
  126. @cd include/sys; \
  127. set -e; \
  128. for i in `ls ../../libc/sysdeps/linux/common/sys/*.h` ; do \
  129. ln -fs $$i .; \
  130. done; \
  131. if [ -d ../../libc/sysdeps/linux/$(TARGET_ARCH)/sys ] ; then \
  132. for i in `ls ../../libc/sysdeps/linux/$(TARGET_ARCH)/sys/*.h` ; do \
  133. ln -fs $$i .; \
  134. done; \
  135. fi
  136. @cd $(TOPDIR); \
  137. set -x -e; \
  138. rm -f include/bits/sysnum.h; \
  139. TOPDIR=. CC=$(CC) /bin/sh extra/scripts/gen_bits_syscall_h.sh > include/bits/sysnum.h
  140. $(MAKE) -C libc/sysdeps/linux/$(TARGET_ARCH) headers
  141. subdirs: $(patsubst %, _dir_%, $(DIRS))
  142. $(patsubst %, _dir_%, $(DIRS)) : dummy
  143. $(MAKE) -C $(patsubst _dir_%, %, $@)
  144. tags:
  145. ctags -R
  146. install: install_dev install_runtime install_toolchain install_utils finished2
  147. # Installs header files and development library links.
  148. install_dev:
  149. install -d $(PREFIX)$(DEVEL_PREFIX)/lib
  150. install -d $(PREFIX)$(DEVEL_PREFIX)/usr/lib
  151. install -d $(PREFIX)$(DEVEL_PREFIX)/include
  152. -install -m 644 lib/*.[ao] $(PREFIX)$(DEVEL_PREFIX)/lib/
  153. tar -chf - include | tar -xf - -C $(PREFIX)$(DEVEL_PREFIX);
  154. -@for i in `find $(PREFIX)$(DEVEL_PREFIX) -type d` ; do \
  155. chmod -f 755 $$i; chmod -f 644 $$i/*.h; \
  156. done;
  157. -find $(PREFIX)$(DEVEL_PREFIX) -name CVS | xargs rm -rf;
  158. -chown -R `id | sed 's/^uid=\([0-9]*\).*gid=\([0-9]*\).*$$/\1.\2/'` $(PREFIX)$(DEVEL_PREFIX)
  159. ifeq ($(strip $(HAVE_SHARED)),y)
  160. -find lib/ -type l -name '*.so' -exec cp -a {} $(PREFIX)$(DEVEL_PREFIX)/lib ';'
  161. # If we build shared libraries then the static libs are PIC...
  162. # Make _pic.a symlinks to make mklibs.py and similar tools happy.
  163. for i in `find lib/ -type f -name '*.a' | sed -e 's/lib\///'` ; do \
  164. ln -sf $$i $(PREFIX)$(DEVEL_PREFIX)/lib/`echo $$i | sed -e 's/\.a$$/_pic.a/'`; \
  165. done
  166. endif
  167. # Installs run-time libraries and helper apps onto the host system
  168. # allowing cross development. If you want to deploy to a target
  169. # system, use the "install_target" target instead...
  170. install_runtime:
  171. ifeq ($(strip $(HAVE_SHARED)),y)
  172. install -d $(PREFIX)$(DEVEL_PREFIX)/lib
  173. install -d $(PREFIX)$(DEVEL_PREFIX)/bin
  174. install -m 644 lib/lib*-$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL).so \
  175. $(PREFIX)$(DEVEL_PREFIX)/lib
  176. cp -a lib/*.so.* $(PREFIX)$(DEVEL_PREFIX)/lib
  177. @if [ -x lib/ld-uClibc-$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL).so ] ; then \
  178. set -x -e; \
  179. install -m 755 lib/ld-uClibc-$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL).so \
  180. $(PREFIX)$(DEVEL_PREFIX)/lib; \
  181. fi;
  182. #@if [ -x lib/ld-uClibc-$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL).so ] ; then \
  183. # install -d $(PREFIX)$(SHARED_LIB_LOADER_PATH); \
  184. # ln -sf $(PREFIX)$(DEVEL_PREFIX)/lib/ld-uClibc-$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL).so \
  185. # $(PREFIX)$(SHARED_LIB_LOADER_PATH)/$(UCLIBC_LDSO); \
  186. #fi;
  187. endif
  188. install_toolchain:
  189. install -d $(PREFIX)$(DEVEL_PREFIX)/lib
  190. install -d $(PREFIX)$(DEVEL_PREFIX)/bin
  191. install -d $(PREFIX)$(DEVEL_TOOL_PREFIX)/bin
  192. install -d $(PREFIX)$(SYSTEM_DEVEL_PREFIX)/bin
  193. $(MAKE) -C extra/gcc-uClibc install
  194. ifeq ($(strip $(HAVE_SHARED)),y)
  195. utils: $(TOPDIR)ldso/util/ldd
  196. $(MAKE) -C ldso utils
  197. else
  198. utils: dummy
  199. endif
  200. install_utils: utils
  201. ifeq ($(strip $(HAVE_SHARED)),y)
  202. install -d $(PREFIX)$(DEVEL_TOOL_PREFIX)/bin;
  203. install -m 755 ldso/util/ldd \
  204. $(PREFIX)$(SYSTEM_DEVEL_PREFIX)/bin/$(TARGET_ARCH)-uclibc-ldd
  205. ln -fs $(SYSTEM_DEVEL_PREFIX)/bin/$(TARGET_ARCH)-uclibc-ldd \
  206. $(PREFIX)$(DEVEL_TOOL_PREFIX)/bin/ldd
  207. # For now, don't bother with readelf since surely the host
  208. # system has binutils, or we couldn't have gotten this far...
  209. #install -m 755 ldso/util/readelf \
  210. # $(PREFIX)$(SYSTEM_DEVEL_PREFIX)/bin/$(TARGET_ARCH)-uclibc-readelf
  211. #ln -fs $(SYSTEM_DEVEL_PREFIX)/bin/$(TARGET_ARCH)-uclibc-readelf \
  212. # $(PREFIX)$(DEVEL_TOOL_PREFIX)/bin/readelf
  213. @if [ -x ldso/util/ldconfig ] ; then \
  214. set -x -e; \
  215. install -d $(PREFIX)$(DEVEL_PREFIX)/etc; \
  216. install -m 755 ldso/util/ldconfig \
  217. $(PREFIX)$(SYSTEM_DEVEL_PREFIX)/bin/$(TARGET_ARCH)-uclibc-ldconfig; \
  218. ln -fs $(SYSTEM_DEVEL_PREFIX)/bin/$(TARGET_ARCH)-uclibc-ldconfig \
  219. $(PREFIX)$(DEVEL_TOOL_PREFIX)/bin/ldconfig; \
  220. fi;
  221. endif
  222. # Installs run-time libraries and helper apps in preparation for
  223. # deploying onto a target system, but installed below wherever
  224. # $PREFIX is set to, allowing you to package up the result for
  225. # deployment onto your target system.
  226. install_target:
  227. ifeq ($(strip $(HAVE_SHARED)),y)
  228. install -d $(PREFIX)$(TARGET_PREFIX)/lib
  229. install -d $(PREFIX)$(TARGET_PREFIX)/usr/bin
  230. install -m 644 lib/lib*-$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL).so \
  231. $(PREFIX)$(TARGET_PREFIX)/lib
  232. cp -a lib/*.so.* $(PREFIX)$(TARGET_PREFIX)/lib
  233. @if [ -x lib/ld-uClibc-$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL).so ] ; then \
  234. set -x -e; \
  235. install -m 755 lib/ld-uClibc-$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL).so \
  236. $(PREFIX)$(TARGET_PREFIX)/lib; \
  237. fi;
  238. #@if [ -x lib/ld-uClibc-$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL).so ] ; then \
  239. # install -d $(PREFIX)$(SHARED_LIB_LOADER_PATH); \
  240. # ln -sf $(PREFIX)$(TARGET_PREFIX)/lib/ld-uClibc-$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL).so \
  241. # $(PREFIX)$(SHARED_LIB_LOADER_PATH)/$(UCLIBC_LDSO); \
  242. #fi;
  243. endif
  244. install_target_utils:
  245. ifeq ($(strip $(HAVE_SHARED)),y)
  246. @$(MAKE) -C ldso/util ldd.target readelf.target #ldconfig.target
  247. install -d $(PREFIX)$(TARGET_PREFIX)/usr/bin;
  248. install -m 755 ldso/util/ldd.target $(PREFIX)$(TARGET_PREFIX)/usr/bin/ldd
  249. install -m 755 ldso/util/readelf.target $(PREFIX)$(TARGET_PREFIX)/usr/bin/readelf
  250. @if [ -x ldso/util/ldconfig.target ] ; then \
  251. set -x -e; \
  252. install -d $(PREFIX)$(TARGET_PREFIX)/etc; \
  253. install -d $(PREFIX)$(TARGET_PREFIX)/sbin; \
  254. install -m 755 ldso/util/ldconfig.target $(PREFIX)$(TARGET_PREFIX)/sbin/ldconfig; \
  255. fi;
  256. endif
  257. ifeq ($(strip $(UCLIBC_HAS_LOCALE)),y)
  258. @$(MAKE) -C libc/misc/wchar iconv.target
  259. install -d $(PREFIX)$(TARGET_PREFIX)/usr/bin;
  260. install -m 755 libc/misc/wchar/iconv.target $(PREFIX)$(TARGET_PREFIX)/usr/bin/iconv
  261. endif
  262. finished2:
  263. @echo
  264. @echo Finished installing...
  265. @echo
  266. else # ifdef include_config
  267. all: menuconfig
  268. ifeq ($(filter-out $(noconfig_targets),$(MAKECMDGOALS)),)
  269. # Targets which don't need .config
  270. # configuration
  271. # ---------------------------------------------------------------------------
  272. extra/config/conf extra/config/mconf:
  273. make -C extra/config
  274. -@if [ ! -f .config ] ; then \
  275. cp extra/Configs/Config.$(TARGET_ARCH).default .config; \
  276. fi
  277. menuconfig: extra/config/mconf
  278. rm -rf include/bits
  279. mkdir -p include/bits
  280. @./extra/config/mconf extra/Configs/Config.$(TARGET_ARCH)
  281. config: extra/config/conf
  282. rm -rf include/bits
  283. mkdir -p include/bits
  284. @./extra/config/conf extra/Configs/Config.$(TARGET_ARCH)
  285. oldconfig: extra/config/conf
  286. rm -rf include/bits
  287. mkdir -p include/bits
  288. @./extra/config/conf -o extra/Configs/Config.$(TARGET_ARCH)
  289. randconfig: extra/config/conf
  290. rm -rf include/bits
  291. mkdir -p include/bits
  292. @./extra/config/conf -r extra/Configs/Config.$(TARGET_ARCH)
  293. allyesconfig: extra/config/conf
  294. rm -rf include/bits
  295. mkdir -p include/bits
  296. @./extra/config/conf -y extra/Configs/Config.$(TARGET_ARCH)
  297. allnoconfig: extra/config/conf
  298. rm -rf include/bits
  299. mkdir -p include/bits
  300. @./extra/config/conf -n extra/Configs/Config.$(TARGET_ARCH)
  301. defconfig: extra/config/conf
  302. rm -rf include/bits
  303. mkdir -p include/bits
  304. @./extra/config/conf -d extra/Configs/Config.$(TARGET_ARCH)
  305. clean:
  306. - find . \( -name \*.o -o -name \*.a -o -name \*.so -o -name core -o -name .\#\* \) -exec rm -f {} \;
  307. @rm -rf tmp lib include/bits libc/tmp _install
  308. $(MAKE) -C test clean
  309. $(MAKE) -C ldso clean
  310. $(MAKE) -C libc/misc/internals clean
  311. $(MAKE) -C libc/misc/wchar clean
  312. $(MAKE) -C libc/unistd clean
  313. $(MAKE) -C libc/sysdeps/linux/common clean
  314. $(MAKE) -C extra clean
  315. @set -e; \
  316. for i in `(cd $(TOPDIR)/libc/sysdeps/linux/common/sys; ls *.h)` ; do \
  317. rm -f include/sys/$$i; \
  318. done; \
  319. if [ -d libc/sysdeps/linux/$(TARGET_ARCH)/sys ] ; then \
  320. for i in `(cd libc/sysdeps/linux/$(TARGET_ARCH)/sys; ls *.h)` ; do \
  321. rm -f include/sys/$$i; \
  322. done; \
  323. fi;
  324. @rm -f include/linux include/scsi include/asm
  325. @if [ -d libc/sysdeps/linux/$(TARGET_ARCH) ]; then \
  326. $(MAKE) -C libc/sysdeps/linux/$(TARGET_ARCH) clean; \
  327. fi;
  328. @if [ "$(TARGET_ARCH)" = "mipsel" ]; then \
  329. $(MAKE) -C libc/sysdeps/linux/mips clean; \
  330. rm -f ldso/ldso/mipsel; \
  331. rm -f libc/sysdeps/linux/mipsel; \
  332. rm -f libpthread/linuxthreads/sysdeps/mipsel; \
  333. fi;
  334. distclean: clean
  335. rm -f .config .config.old .config.cmd
  336. release: distclean
  337. cd ..; \
  338. rm -rf uClibc-$(VERSION); \
  339. cp -a uClibc uClibc-$(VERSION); \
  340. find uClibc-$(VERSION)/ -type d \
  341. -name .\#* -exec rm -rf {} \; ; \
  342. \
  343. tar -cvzf uClibc-$(VERSION).tar.gz --exclude CVS uClibc-$(VERSION)/;
  344. endif # ifeq ($(filter-out $(noconfig_targets),$(MAKECMDGOALS)),)
  345. endif # ifdef include_config
  346. .PHONY: dummy subdirs release distclean clean config oldconfig menuconfig