Makefile 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388
  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. mkdir -p $(PREFIX)$(SHARED_LIB_LOADER_PATH); \
  182. ln -s $(DEVEL_PREFIX)/lib/ld-uClibc-$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL).so \
  183. $(PREFIX)$(SHARED_LIB_LOADER_PATH)/$(UCLIBC_LDSO) || true; \
  184. fi;
  185. endif
  186. install_toolchain:
  187. install -d $(PREFIX)$(DEVEL_PREFIX)/lib
  188. install -d $(PREFIX)$(DEVEL_PREFIX)/bin
  189. install -d $(PREFIX)$(DEVEL_TOOL_PREFIX)/bin
  190. install -d $(PREFIX)$(SYSTEM_DEVEL_PREFIX)/bin
  191. $(MAKE) -C extra/gcc-uClibc install
  192. ifeq ($(strip $(HAVE_SHARED)),y)
  193. utils: $(TOPDIR)ldso/util/ldd
  194. $(MAKE) -C ldso utils
  195. else
  196. utils: dummy
  197. endif
  198. install_utils: utils
  199. ifeq ($(strip $(HAVE_SHARED)),y)
  200. install -d $(PREFIX)$(DEVEL_TOOL_PREFIX)/bin;
  201. install -m 755 ldso/util/ldd \
  202. $(PREFIX)$(SYSTEM_DEVEL_PREFIX)/bin/$(TARGET_ARCH)-uclibc-ldd
  203. ln -fs $(SYSTEM_DEVEL_PREFIX)/bin/$(TARGET_ARCH)-uclibc-ldd \
  204. $(PREFIX)$(DEVEL_TOOL_PREFIX)/bin/ldd
  205. # For now, don't bother with readelf since surely the host
  206. # system has binutils, or we couldn't have gotten this far...
  207. #install -m 755 ldso/util/readelf \
  208. # $(PREFIX)$(SYSTEM_DEVEL_PREFIX)/bin/$(TARGET_ARCH)-uclibc-readelf
  209. #ln -fs $(SYSTEM_DEVEL_PREFIX)/bin/$(TARGET_ARCH)-uclibc-readelf \
  210. # $(PREFIX)$(DEVEL_TOOL_PREFIX)/bin/readelf
  211. @if [ -x ldso/util/ldconfig ] ; then \
  212. set -x -e; \
  213. install -d $(PREFIX)$(DEVEL_PREFIX)/etc; \
  214. install -m 755 ldso/util/ldconfig \
  215. $(PREFIX)$(SYSTEM_DEVEL_PREFIX)/bin/$(TARGET_ARCH)-uclibc-ldconfig; \
  216. ln -fs $(SYSTEM_DEVEL_PREFIX)/bin/$(TARGET_ARCH)-uclibc-ldconfig \
  217. $(PREFIX)$(DEVEL_TOOL_PREFIX)/bin/ldconfig; \
  218. fi;
  219. endif
  220. # Installs run-time libraries and helper apps in preparation for
  221. # deploying onto a target system, but installed below wherever
  222. # $PREFIX is set to, allowing you to package up the result for
  223. # deployment onto your target system.
  224. install_target:
  225. ifeq ($(strip $(HAVE_SHARED)),y)
  226. install -d $(PREFIX)$(TARGET_PREFIX)/lib
  227. install -d $(PREFIX)$(TARGET_PREFIX)/usr/bin
  228. install -m 644 lib/lib*-$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL).so \
  229. $(PREFIX)$(TARGET_PREFIX)/lib
  230. cp -a lib/*.so.* $(PREFIX)$(TARGET_PREFIX)/lib
  231. @if [ -x lib/ld-uClibc-$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL).so ] ; then \
  232. set -x -e; \
  233. install -m 755 lib/ld-uClibc-$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL).so \
  234. $(PREFIX)$(TARGET_PREFIX)/lib; \
  235. mkdir -p $(PREFIX)$(SHARED_LIB_LOADER_PATH); \
  236. ln -s $(TARGET_PREFIX)/lib/ld-uClibc-$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL).so \
  237. $(PREFIX)$(SHARED_LIB_LOADER_PATH)/$(UCLIBC_LDSO) || true; \
  238. fi;
  239. endif
  240. install_target_utils:
  241. ifeq ($(strip $(HAVE_SHARED)),y)
  242. @$(MAKE) -C ldso/util ldd.target readelf.target #ldconfig.target
  243. install -d $(PREFIX)$(TARGET_PREFIX)/usr/bin;
  244. install -m 755 ldso/util/ldd.target $(PREFIX)$(TARGET_PREFIX)/usr/bin/ldd
  245. install -m 755 ldso/util/readelf.target $(PREFIX)$(TARGET_PREFIX)/usr/bin/readelf
  246. @if [ -x ldso/util/ldconfig.target ] ; then \
  247. set -x -e; \
  248. install -d $(PREFIX)$(TARGET_PREFIX)/etc; \
  249. install -d $(PREFIX)$(TARGET_PREFIX)/sbin; \
  250. install -m 755 ldso/util/ldconfig.target $(PREFIX)$(TARGET_PREFIX)/sbin/ldconfig; \
  251. fi;
  252. endif
  253. ifeq ($(strip $(UCLIBC_HAS_LOCALE)),y)
  254. @$(MAKE) -C libc/misc/wchar iconv.target
  255. install -d $(PREFIX)$(TARGET_PREFIX)/usr/bin;
  256. install -m 755 libc/misc/wchar/iconv.target $(PREFIX)$(TARGET_PREFIX)/usr/bin/iconv
  257. endif
  258. finished2:
  259. @echo
  260. @echo Finished installing...
  261. @echo
  262. else # ifdef include_config
  263. all: menuconfig
  264. ifeq ($(filter-out $(noconfig_targets),$(MAKECMDGOALS)),)
  265. # Targets which don't need .config
  266. # configuration
  267. # ---------------------------------------------------------------------------
  268. extra/config/conf extra/config/mconf:
  269. make -C extra/config
  270. -@if [ ! -f .config ] ; then \
  271. cp extra/Configs/Config.$(TARGET_ARCH).default .config; \
  272. fi
  273. menuconfig: extra/config/mconf
  274. make -C extra/config/lxdialog
  275. rm -rf include/bits
  276. mkdir -p include/bits
  277. @./extra/config/mconf extra/Configs/Config.$(TARGET_ARCH)
  278. config: extra/config/conf
  279. rm -rf include/bits
  280. mkdir -p include/bits
  281. @./extra/config/conf extra/Configs/Config.$(TARGET_ARCH)
  282. oldconfig: extra/config/conf
  283. rm -rf include/bits
  284. mkdir -p include/bits
  285. @./extra/config/conf -o extra/Configs/Config.$(TARGET_ARCH)
  286. randconfig: extra/config/conf
  287. rm -rf include/bits
  288. mkdir -p include/bits
  289. @./extra/config/conf -r extra/Configs/Config.$(TARGET_ARCH)
  290. allyesconfig: extra/config/conf
  291. rm -rf include/bits
  292. mkdir -p include/bits
  293. @./extra/config/conf -y extra/Configs/Config.$(TARGET_ARCH)
  294. allnoconfig: extra/config/conf
  295. rm -rf include/bits
  296. mkdir -p include/bits
  297. @./extra/config/conf -n extra/Configs/Config.$(TARGET_ARCH)
  298. defconfig: extra/config/conf
  299. rm -rf include/bits
  300. mkdir -p include/bits
  301. @./extra/config/conf -d extra/Configs/Config.$(TARGET_ARCH)
  302. clean:
  303. - find . \( -name \*.o -o -name \*.a -o -name \*.so -o -name core -o -name .\#\* \) -exec rm -f {} \;
  304. @rm -rf tmp lib include/bits libc/tmp _install
  305. $(MAKE) -C test clean
  306. $(MAKE) -C ldso clean
  307. $(MAKE) -C libc/misc/internals clean
  308. $(MAKE) -C libc/misc/wchar clean
  309. $(MAKE) -C libc/unistd clean
  310. $(MAKE) -C libc/sysdeps/linux/common clean
  311. $(MAKE) -C extra clean
  312. @set -e; \
  313. for i in `(cd $(TOPDIR)/libc/sysdeps/linux/common/sys; ls *.h)` ; do \
  314. rm -f include/sys/$$i; \
  315. done; \
  316. if [ -d libc/sysdeps/linux/$(TARGET_ARCH)/sys ] ; then \
  317. for i in `(cd libc/sysdeps/linux/$(TARGET_ARCH)/sys; ls *.h)` ; do \
  318. rm -f include/sys/$$i; \
  319. done; \
  320. fi;
  321. @rm -f include/linux include/scsi include/asm
  322. @if [ -d libc/sysdeps/linux/$(TARGET_ARCH) ]; then \
  323. $(MAKE) -C libc/sysdeps/linux/$(TARGET_ARCH) clean; \
  324. fi;
  325. @if [ "$(TARGET_ARCH)" = "mipsel" ]; then \
  326. $(MAKE) -C libc/sysdeps/linux/mips clean; \
  327. rm -f ldso/ldso/mipsel; \
  328. rm -f libc/sysdeps/linux/mipsel; \
  329. rm -f libpthread/linuxthreads/sysdeps/mipsel; \
  330. fi;
  331. distclean: clean
  332. rm -f .config .config.old .config.cmd
  333. release: distclean
  334. cd ..; \
  335. rm -rf uClibc-$(VERSION); \
  336. cp -a uClibc uClibc-$(VERSION); \
  337. find uClibc-$(VERSION)/ -type d \
  338. -name .\#* -exec rm -rf {} \; ; \
  339. \
  340. tar -cvzf uClibc-$(VERSION).tar.gz --exclude CVS uClibc-$(VERSION)/;
  341. endif # ifeq ($(filter-out $(noconfig_targets),$(MAKECMDGOALS)),)
  342. endif # ifdef include_config
  343. .PHONY: dummy subdirs release distclean clean config oldconfig menuconfig