Makefile 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299
  1. # Makefile for uClibc
  2. #
  3. # Copyright (C) 2000 by Lineo, inc.
  4. # Copyright (C) 2000,2001,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. #
  26. #There are a number of configurable options in "Config"
  27. #
  28. #--------------------------------------------------------
  29. TOPDIR=./
  30. include Rules.mak
  31. DIRS = extra ldso libc libcrypt libresolv libutil libm #libpthread
  32. all: headers uClibc_config.h subdirs shared done
  33. Config:
  34. @echo
  35. @echo "You didn't read the README, did you... =)"
  36. @echo "Choose a configuration file in extras/Config/ and then run"
  37. @echo " ln -s ./extra/Configs/Config.<arch> ./Config"
  38. @echo
  39. @exit 1
  40. shared:
  41. ifeq ($(strip $(HAVE_SHARED)),true)
  42. @$(MAKE) -C libc shared
  43. @$(MAKE) -C ldso shared
  44. @$(MAKE) -C libcrypt shared
  45. @$(MAKE) -C libresolv shared
  46. @$(MAKE) -C libutil shared
  47. @$(MAKE) -C libm shared
  48. #@$(MAKE) -C libpthread shared
  49. else
  50. @echo
  51. @echo Not building shared libraries...
  52. @echo
  53. endif
  54. done: shared
  55. @echo
  56. @echo Finally finished compiling...
  57. @echo
  58. headers: dummy
  59. @rm -f include/asm include/linux include/bits
  60. @if [ $(TARGET_ARCH) = "powerpc" ];then \
  61. ln -fs $(KERNEL_SOURCE)/include/asm-ppc include/asm; \
  62. elif [ $(TARGET_ARCH) = "v850" ];then \
  63. ln -fs $(KERNEL_SOURCE)/include/asm-v850 include/asm; \
  64. elif [ $(TARGET_ARCH) = "mipsel" ];then \
  65. ln -fs $(KERNEL_SOURCE)/include/asm-mips include/asm; \
  66. else \
  67. if [ $(HAS_MMU) != "true" ]; then \
  68. ln -fs $(KERNEL_SOURCE)/include/asm-$(TARGET_ARCH)nommu include/asm;\
  69. else \
  70. ln -fs $(KERNEL_SOURCE)/include/asm-$(TARGET_ARCH) include/asm; \
  71. fi; \
  72. fi;
  73. @if [ ! -f include/asm/unistd.h ] ; then \
  74. set -e; \
  75. echo " "; \
  76. echo "The path '$(KERNEL_SOURCE)/include/asm' doesn't exist."; \
  77. echo "I bet you didn't set KERNEL_SOURCE, TARGET_ARCH or HAS_MMU in \`Config'"; \
  78. echo "correctly. Please edit \`Config' and fix these settings."; \
  79. echo " "; \
  80. /bin/false; \
  81. fi;
  82. @if [ $(HAS_MMU) != "true" ] && [ $(TARGET_ARCH) = "i386" ] ; then \
  83. set -e; \
  84. echo "WARNING: I bet your x86 system really has an MMU, right?"; \
  85. echo " malloc and friends won't work unless you fix \`Config'"; \
  86. echo " "; \
  87. sleep 10; \
  88. fi;
  89. @ln -fs $(KERNEL_SOURCE)/include/linux include/linux
  90. @ln -fs ../libc/sysdeps/linux/$(TARGET_ARCH)/bits include/bits
  91. (cd include/bits && ln -sf ../../../../../uClibc_config.h uClibc_config.h)
  92. $(MAKE) -C libc/sysdeps/linux/$(TARGET_ARCH) headers
  93. uClibc_config.h: Makefile Config
  94. @echo "/* WARNING!!! AUTO-GENERATED FILE!!! DO NOT EDIT!!! */" > uClibc_config.h
  95. @echo "#if !defined __FEATURES_H && !defined __need_uClibc_config_h" >> uClibc_config.h
  96. @echo "#error Never include <bits/uClibc_config.h> directly; use <features.h> instead." >> uClibc_config.h
  97. @echo "#endif" >> uClibc_config.h
  98. @echo "#define linux 1" >> uClibc_config.h
  99. @echo "#define __linux__ 1" >> uClibc_config.h
  100. @if [ "$(INCLUDE_IPV6)" = "true" ] ; then \
  101. echo "#define __UCLIBC_HAS_IPV6__ 1" >> uClibc_config.h ; \
  102. else \
  103. echo "#undef __UCLIBC_HAS_IPV6__" >> uClibc_config.h ; \
  104. fi
  105. @if [ "$(HAS_MMU)" = "true" ] ; then \
  106. echo "#define __UCLIBC_HAS_MMU__ 1" >> uClibc_config.h ; \
  107. else \
  108. echo "#undef __UCLIBC_HAS_MMU__" >> uClibc_config.h ; \
  109. fi
  110. @if [ "$(HAS_FLOATING_POINT)" = "true" ] ; then \
  111. echo "#define __UCLIBC_HAS_FLOATS__ 1" >> uClibc_config.h ; \
  112. else \
  113. echo "#undef __UCLIBC_HAS_FLOATS__" >> uClibc_config.h ; \
  114. fi
  115. @if [ "$(HAS_LONG_LONG)" = "true" ] ; then \
  116. echo "#define __UCLIBC_HAS_LONG_LONG__ 1" >> uClibc_config.h ; \
  117. else \
  118. echo "#undef __UCLIBC_HAS_LONG_LONG__" >> uClibc_config.h ; \
  119. fi
  120. @if [ "$(HAS_LOCALE)" = "true" ] ; then \
  121. echo "#define __UCLIBC_HAS_LOCALE__ 1" >> uClibc_config.h ; \
  122. echo "#define __UCLIBC_LOCALE_DIR \""$(LOCALE_DIR)"\"" >> uClibc_config.h ; \
  123. else \
  124. echo "#undef __UCLIBC_HAS_LOCALE__" >> uClibc_config.h ; \
  125. fi
  126. @if [ "$(HAVE_ELF)" = "false" ] ; then \
  127. echo "#undef HAVE_ELF" >> uClibc_config.h ; \
  128. else \
  129. echo "#define HAVE_ELF 1" >> uClibc_config.h ; \
  130. fi
  131. @if [ "$(HAVE_SHARED)" = "false" ] ; then \
  132. echo "#undef HAVE_SHARED" >> uClibc_config.h ; \
  133. else \
  134. echo "#define HAVE_SHARED 1" >> uClibc_config.h ; \
  135. fi
  136. @if [ "$(TARGET_ARCH)" = "sh" ] ; then \
  137. echo "#define NO_UNDERSCORES 1" >> uClibc_config.h ; \
  138. else \
  139. echo "#undef NO_UNDERSCORES" >> uClibc_config.h ; \
  140. fi
  141. @if [ "$(INCLUDE_RPC)" = "true" ] ; then \
  142. echo "#define __UCLIBC_HAS_RPC__ 1" >> uClibc_config.h ; \
  143. else \
  144. echo "#undef __UCLIBC_HAS_RPC__" >> uClibc_config.h ; \
  145. fi
  146. @if [ "$(UNIFIED_SYSCALL)" = "true" ] ; then \
  147. echo "#define __UCLIBC_USE_UNIFIED_SYSCALL__ 1" >> uClibc_config.h ; \
  148. else \
  149. echo "#undef __UCLIBC_USE_UNIFIED_SYSCALL__" >> uClibc_config.h ; \
  150. fi
  151. @echo "#define C_SYMBOL_PREFIX "\""$(C_SYMBOL_PREFIX)"\" >> uClibc_config.h
  152. @if [ "$(DOLFS)" = "true" ] ; then \
  153. echo "#define __UCLIBC_HAVE_LFS__ 1" >> uClibc_config.h ; \
  154. else \
  155. echo "#undef __UCLIBC_HAVE_LFS__" >> uClibc_config.h ; \
  156. fi
  157. @if [ "$(UNIX98PTY_ONLY)" = "true" ] ; then \
  158. echo "#define UNIX98PTY_ONLY 1" >> uClibc_config.h ; \
  159. else \
  160. echo "#undef UNIX98PTY_ONLY" >> uClibc_config.h ; \
  161. fi
  162. @if [ "$(ASSUME_DEVPTS)" = "true" ] ; then \
  163. echo "#define ASSUME_DEVPTS 1" >> uClibc_config.h ; \
  164. else \
  165. echo "#undef ASSUME_DEVPTS" >> uClibc_config.h ; \
  166. fi
  167. subdirs: $(patsubst %, _dir_%, $(DIRS))
  168. $(patsubst %, _dir_%, $(DIRS)) : dummy
  169. $(MAKE) -C $(patsubst _dir_%, %, $@)
  170. tags:
  171. ctags -R
  172. install: install_dev install_runtime install_toolchain install_utils
  173. # Installs header files and development library links.
  174. install_dev:
  175. install -d $(PREFIX)$(DEVEL_PREFIX)/lib
  176. install -d $(PREFIX)$(DEVEL_PREFIX)/usr/lib
  177. install -d $(PREFIX)$(DEVEL_PREFIX)/include
  178. install -m 644 lib/*.[ao] $(PREFIX)$(DEVEL_PREFIX)/lib/
  179. tar -chO include | tar -xf - -C $(PREFIX)$(DEVEL_PREFIX);
  180. -@for i in `find $(PREFIX)$(DEVEL_PREFIX) -type d` ; do \
  181. chmod -f 755 $$i; chmod -f 644 $$i/*.h; \
  182. done;
  183. (NAME=`id -u`; GROUP=`id -g`; chown -R $$NAME.$$GROUP $(PREFIX)$(DEVEL_PREFIX))
  184. ifeq ($(strip $(HAVE_SHARED)),true)
  185. find lib/ -type l -name '*.so' -exec cp -a {} $(PREFIX)$(DEVEL_PREFIX)/lib ';'
  186. endif
  187. # Installs run-time libraries and helper apps onto the host system
  188. # allowing cross development. If you want to deploy to a target
  189. # system, use the "install_target" target instead...
  190. install_runtime:
  191. ifeq ($(strip $(HAVE_SHARED)),true)
  192. install -d $(PREFIX)$(DEVEL_PREFIX)/lib
  193. install -d $(PREFIX)$(DEVEL_PREFIX)/bin
  194. install -m 644 lib/lib*-$(MAJOR_VERSION).$(MINOR_VERSION).so $(PREFIX)$(DEVEL_PREFIX)/lib
  195. cp -a lib/*.so.* $(PREFIX)$(DEVEL_PREFIX)/lib
  196. @if [ -x lib/ld-uClibc-$(MAJOR_VERSION).$(MINOR_VERSION).so ] ; then \
  197. set -x -e; \
  198. install -m 755 lib/ld-uClibc-$(MAJOR_VERSION).$(MINOR_VERSION).so $(PREFIX)$(DEVEL_PREFIX)/lib; \
  199. mkdir -p $(PREFIX)$(SHARED_LIB_LOADER_PATH); \
  200. ln -s $(DEVEL_PREFIX)/lib/ld-uClibc-$(MAJOR_VERSION).$(MINOR_VERSION).so \
  201. $(PREFIX)$(SHARED_LIB_LOADER_PATH)/$(UCLIBC_LDSO) || true; \
  202. fi;
  203. endif
  204. install_toolchain:
  205. install -d $(PREFIX)$(DEVEL_PREFIX)/lib
  206. install -d $(PREFIX)$(DEVEL_PREFIX)/bin
  207. install -d $(PREFIX)$(SYSTEM_DEVEL_PREFIX)/bin
  208. $(MAKE) -C extra/gcc-uClibc install
  209. install_utils:
  210. ifeq ($(strip $(HAVE_SHARED)),true)
  211. @$(MAKE) -C ldso utils
  212. install -m 755 ldso/util/ldd $(PREFIX)$(DEVEL_PREFIX)/bin
  213. ln -fs $(DEVEL_PREFIX)/bin/ldd $(PREFIX)$(SYSTEM_DEVEL_PREFIX)/bin/$(TARGET_ARCH)-uclibc-ldd
  214. # For now, don't bother with readelf since surely the host
  215. # system has binutils, or we couldn't have gotten this far...
  216. #install -m 755 ldso/util/readelf $(PREFIX)$(DEVEL_PREFIX)/bin
  217. #ln -fs $(DEVEL_PREFIX)/bin/readelf $(PREFIX)$(SYSTEM_DEVEL_PREFIX)/bin/$(TARGET_ARCH)-uclibc-readelf
  218. @if [ -x ldso/util/ldconfig ] ; then \
  219. set -x -e; \
  220. install -d $(PREFIX)$(DEVEL_PREFIX)/etc; \
  221. install -m 755 ldso/util/ldconfig $(PREFIX)$(DEVEL_PREFIX)/bin; \
  222. ln -fs $(DEVEL_PREFIX)/sbin/ldconfig $(PREFIX)$(SYSTEM_DEVEL_PREFIX)/bin/$(TARGET_ARCH)-uclibc-ldconfig; \
  223. fi;
  224. endif
  225. # Installs run-time libraries and helper apps in preparation for
  226. # deploying onto a target system, but installed below wherever
  227. # $PREFIX is set to, allowing you to package up the result for
  228. # deployment onto your target system.
  229. install_target:
  230. ifeq ($(strip $(HAVE_SHARED)),true)
  231. install -d $(PREFIX)$(TARGET_PREFIX)/lib
  232. install -d $(PREFIX)$(TARGET_PREFIX)/sbin
  233. install -d $(PREFIX)$(TARGET_PREFIX)/usr/bin
  234. install -m 644 lib/lib*-$(MAJOR_VERSION).$(MINOR_VERSION).so $(PREFIX)$(TARGET_PREFIX)/lib
  235. cp -a lib/*.so.* $(PREFIX)$(TARGET_PREFIX)/lib
  236. @if [ -x lib/ld-uClibc-$(MAJOR_VERSION).$(MINOR_VERSION).so ] ; then \
  237. set -x -e; \
  238. install -m 755 lib/ld-uClibc-$(MAJOR_VERSION).$(MINOR_VERSION).so $(PREFIX)$(TARGET_PREFIX)/lib; \
  239. mkdir -p $(PREFIX)$(SHARED_LIB_LOADER_PATH); \
  240. ln -s $(TARGET_PREFIX)/lib/ld-uClibc-$(MAJOR_VERSION).$(MINOR_VERSION).so \
  241. $(PREFIX)$(SHARED_LIB_LOADER_PATH)/$(UCLIBC_LDSO) || true; \
  242. fi;
  243. endif
  244. install_target_utils:
  245. ifeq ($(strip $(HAVE_SHARED)),true)
  246. install -m 755 ldso/util/ldd.target $(PREFIX)$(TARGET_PREFIX)/usr/bin/ldd
  247. install -m 755 ldso/util/readelf.target $(PREFIX)$(TARGET_PREFIX)/usr/bin/readelf
  248. @if [ -x ldso/util/ldconfig.target ] ; then \
  249. set -x -e; \
  250. install -d $(PREFIX)$(TARGET_PREFIX)/etc; \
  251. install -m 755 ldso/util/ldconfig.target $(PREFIX)$(TARGET_PREFIX)/sbin/ldconfig; \
  252. fi;
  253. endif
  254. distclean clean:
  255. @rm -rf tmp lib include/bits/uClibc_config.h uClibc_config.h
  256. - find include -type l -exec rm -f {} \;
  257. - find . \( -name \*.o -o -name \*.a -o -name \*.so -o -name core -o -name .\#\* \) -exec rm -f {} \;
  258. $(MAKE) -C test clean
  259. $(MAKE) -C ldso clean
  260. $(MAKE) -C libc/unistd clean
  261. $(MAKE) -C libc/sysdeps/linux/common clean
  262. $(MAKE) -C libc/sysdeps/linux/$(TARGET_ARCH) clean
  263. $(MAKE) -C extra/gcc-uClibc clean
  264. dist release: distclean
  265. cd ..; \
  266. rm -rf uClibc-$(VERSION); \
  267. cp -a uClibc uClibc-$(VERSION); \
  268. find uClibc-$(VERSION)/ -type d \
  269. -name CVS -exec rm -rf {} \; ; \
  270. find uClibc-$(VERSION)/ -type d \
  271. -name .\#* -exec rm -rf {} \; ; \
  272. \
  273. tar -cvzf uClibc-$(VERSION).tar.gz --exclude CVS uClibc-$(VERSION)/;
  274. .PHONY: dummy subdirs