Makefile 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387
  1. # Makefile for uClibc
  2. #
  3. # Copyright (C) 2000-2003 Erik Andersen <andersen@uclibc.org>
  4. #
  5. # This program is free software; you can redistribute it and/or
  6. # modify it under the terms of the GNU Library General Public
  7. # License as published by the Free Software Foundation; either
  8. # version 2 of the License, or (at your option) any later
  9. # version.
  10. #
  11. # This program is distributed in the hope that it will be useful,
  12. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. # GNU Library General Public License for more details.
  15. #
  16. # You should have received a copy of the GNU Library General
  17. # Public License along with this program; if not, write to the
  18. # Free Software Foundation, Inc., 59 Temple Place, Suite 330,
  19. # Boston, MA 02111-1307 USA
  20. #--------------------------------------------------------------
  21. # You shouldn't need to mess with anything beyond this point...
  22. #--------------------------------------------------------------
  23. noconfig_targets := menuconfig config oldconfig randconfig \
  24. defconfig allyesconfig allnoconfig clean distclean \
  25. release tags TAGS
  26. TOPDIR=./
  27. include Rules.mak
  28. DIRS = ldso libc libcrypt libresolv libnsl libutil librt
  29. ifeq ($(strip $(UCLIBC_HAS_FLOATS)),y)
  30. DIRS += libm
  31. endif
  32. ifeq ($(strip $(UCLIBC_HAS_THREADS)),y)
  33. DIRS += libpthread
  34. endif
  35. ifeq ($(strip $(UCLIBC_HAS_GETTEXT_AWARENESS)),y)
  36. DIRS += libintl
  37. endif
  38. ifeq ($(strip $(HAVE_DOT_CONFIG)),y)
  39. all: headers pregen subdirs shared finished
  40. # In this section, we need .config
  41. -include .config.cmd
  42. shared: $(patsubst %, _shared_dir_%, $(DIRS))
  43. $(patsubst %, _shared_dir_%, $(DIRS)): subdirs
  44. ifeq ($(strip $(HAVE_SHARED)),y)
  45. $(SECHO)
  46. $(SECHO) Building shared libraries ...
  47. $(SECHO)
  48. $(MAKE) -C $(patsubst _shared_dir_%, %, $@) shared
  49. else
  50. $(SECHO)
  51. $(SECHO) Not building shared libraries ...
  52. $(SECHO)
  53. endif
  54. finished: shared
  55. $(SECHO)
  56. $(SECHO) Finally finished compiling ...
  57. $(SECHO)
  58. include/bits/uClibc_config.h: .config
  59. @if [ ! -x ./extra/config/conf ] ; then \
  60. $(MAKE) -C extra/config conf; \
  61. fi;
  62. $(RM) -r include/bits
  63. $(INSTALL) -d include/bits
  64. @./extra/config/conf -o extra/Configs/Config.in
  65. # For the moment, we have to keep re-running this target
  66. # because the fix includes scripts rely on pre-processers
  67. # in order to generate the headers correctly :(. That
  68. # means we can't use the $(HOSTCC) in order to get the
  69. # correct output.
  70. ifeq ($(strip $(ARCH_HAS_MMU)),y)
  71. export header_extra_args =
  72. else
  73. export header_extra_args = -n
  74. endif
  75. headers: include/bits/uClibc_config.h
  76. @$(SHELL_SET_X); \
  77. ./extra/scripts/fix_includes.sh \
  78. -k $(KERNEL_SOURCE) -t $(TARGET_ARCH) \
  79. $(header_extra_args)
  80. @cd include/bits; \
  81. set -e; \
  82. for i in `ls ../../libc/sysdeps/linux/common/bits/*.h` ; do \
  83. $(LN) -fs $$i .; \
  84. done; \
  85. if [ -d ../../libc/sysdeps/linux/$(TARGET_ARCH)/bits ] ; then \
  86. for i in `ls ../../libc/sysdeps/linux/$(TARGET_ARCH)/bits/*.h` ; do \
  87. $(LN) -fs $$i .; \
  88. done; \
  89. fi
  90. @cd include/sys; \
  91. set -e; \
  92. for i in `ls ../../libc/sysdeps/linux/common/sys/*.h` ; do \
  93. $(LN) -fs $$i .; \
  94. done; \
  95. if [ -d ../../libc/sysdeps/linux/$(TARGET_ARCH)/sys ] ; then \
  96. for i in `ls ../../libc/sysdeps/linux/$(TARGET_ARCH)/sys/*.h` ; do \
  97. $(LN) -fs $$i .; \
  98. done; \
  99. fi
  100. @cd $(TOPDIR); \
  101. set -e; \
  102. $(SHELL_SET_X); \
  103. TOPDIR=. CC="$(CC)" /bin/sh extra/scripts/gen_bits_syscall_h.sh > include/bits/sysnum.h.new; \
  104. if cmp include/bits/sysnum.h include/bits/sysnum.h.new >/dev/null 2>&1; then \
  105. $(RM) include/bits/sysnum.h.new; \
  106. else \
  107. mv -f include/bits/sysnum.h.new include/bits/sysnum.h; \
  108. fi
  109. $(MAKE) -C libpthread headers
  110. $(MAKE) -C libc/sysdeps/linux/common headers
  111. $(MAKE) -C libc/sysdeps/linux/$(TARGET_ARCH) headers
  112. # Command used to download source code
  113. WGET:=wget --passive-ftp
  114. LOCALE_DATA_FILENAME:=uClibc-locale-030818.tgz
  115. pregen: headers
  116. ifeq ($(strip $(UCLIBC_DOWNLOAD_PREGENERATED_LOCALE_DATA)),y)
  117. (cd extra/locale; \
  118. if [ ! -f $(LOCALE_DATA_FILENAME) ] ; then \
  119. $(WGET) http://www.uclibc.org/downloads/$(LOCALE_DATA_FILENAME) ; \
  120. fi );
  121. endif
  122. ifeq ($(strip $(UCLIBC_PREGENERATED_LOCALE_DATA)),y)
  123. (cd extra/locale; zcat $(LOCALE_DATA_FILENAME) | tar -xvf -)
  124. $(MAKE) -C extra/locale pregen
  125. endif
  126. subdirs: $(patsubst %, _dir_%, $(DIRS))
  127. $(patsubst %, _dir_%, $(DIRS)): headers
  128. $(MAKE) -C $(patsubst _dir_%, %, $@)
  129. tags:
  130. ctags -R
  131. install: install_runtime install_dev finished2
  132. RUNTIME_PREFIX_LIB_FROM_DEVEL_PREFIX_LIB=$(shell extra/scripts/relative_path.sh $(DEVEL_PREFIX)lib $(RUNTIME_PREFIX)lib)
  133. # Installs header files and development library links.
  134. install_dev:
  135. $(INSTALL) -d $(PREFIX)$(DEVEL_PREFIX)lib
  136. $(INSTALL) -d $(PREFIX)$(DEVEL_PREFIX)include
  137. -$(INSTALL) -m 644 lib/*.[ao] $(PREFIX)$(DEVEL_PREFIX)lib/
  138. if [ "$(KERNEL_SOURCE)" == "$(DEVEL_PREFIX)" ] ; then \
  139. extra_exclude="--exclude include/linux --exclude include/asm'*'" ; \
  140. else \
  141. extra_exclude="" ; \
  142. fi ; \
  143. tar -chf - include --exclude .svn --exclude CVS $$extra_exclude \
  144. | tar -xf - -C $(PREFIX)$(DEVEL_PREFIX)
  145. $(RM) $(PREFIX)$(DEVEL_PREFIX)include/libc-internal.h
  146. ifneq ($(strip $(UCLIBC_HAS_FLOATS)),y)
  147. # Remove floating point related headers since float support is disabled.
  148. $(RM) $(PREFIX)$(DEVEL_PREFIX)include/complex.h
  149. $(RM) $(PREFIX)$(DEVEL_PREFIX)include/fpu_control.h
  150. $(RM) $(PREFIX)$(DEVEL_PREFIX)include/ieee754.h
  151. $(RM) $(PREFIX)$(DEVEL_PREFIX)include/math.h
  152. $(RM) $(PREFIX)$(DEVEL_PREFIX)include/tgmath.h
  153. $(RM) $(PREFIX)$(DEVEL_PREFIX)include/bits/uClibc_fpmax.h
  154. endif
  155. ifneq ($(strip $(UCLIBC_HAS_WCHAR)),y)
  156. # Remove wide char headers since wide char support is disabled.
  157. $(RM) $(PREFIX)$(DEVEL_PREFIX)include/wctype.h
  158. $(RM) $(PREFIX)$(DEVEL_PREFIX)include/wchar.h
  159. endif
  160. ifneq ($(strip $(UCLIBC_HAS_LOCALE)),y)
  161. # Remove iconv header since locale support is disabled.
  162. $(RM) $(PREFIX)$(DEVEL_PREFIX)include/iconv.h
  163. endif
  164. ifneq ($(strip $(UCLIBC_HAS_GLIBC_CUSTOM_PRINTF)),y)
  165. # Remove printf header since custom print specifier support is disabled.
  166. $(RM) $(PREFIX)$(DEVEL_PREFIX)include/printf.h
  167. endif
  168. ifneq ($(strip $(UCLIBC_HAS_XLOCALE)),y)
  169. # Remove xlocale header since extended locale support is disabled.
  170. $(RM) $(PREFIX)$(DEVEL_PREFIX)include/xlocale.h
  171. endif
  172. ifneq ($(strip $(UCLIBC_HAS_GETTEXT_AWARENESS)),y)
  173. # Remove libintl header since gettext support is disabled.
  174. $(RM) $(PREFIX)$(DEVEL_PREFIX)include/libintl.h
  175. endif
  176. ifneq ($(strip $(UCLIBC_HAS_REGEX)),y)
  177. # Remove regex headers since regex support is disabled.
  178. $(RM) $(PREFIX)$(DEVEL_PREFIX)include/regex.h
  179. $(RM) $(PREFIX)$(DEVEL_PREFIX)include/regexp.h
  180. endif
  181. ifneq ($(strip $(UCLIBC_HAS_WORDEXP)),y)
  182. # Remove wordexp header since wordexp support is disabled.
  183. $(RM) $(PREFIX)$(DEVEL_PREFIX)include/wordexp.h
  184. endif
  185. ifneq ($(strip $(UCLIBC_HAS_FTW)),y)
  186. # Remove ftw header since ftw support is disabled.
  187. $(RM) $(PREFIX)$(DEVEL_PREFIX)include/ftw.h
  188. endif
  189. ifneq ($(strip $(UCLIBC_HAS_GLOB)),y)
  190. # Remove glob header since glob support is disabled.
  191. $(RM) $(PREFIX)$(DEVEL_PREFIX)include/glob.h
  192. endif
  193. ifneq ($(strip $(UCLIBC_HAS_GNU_GETOPT)),y)
  194. # Remove getopt header since gnu getopt support is disabled.
  195. $(RM) $(PREFIX)$(DEVEL_PREFIX)include/getopt.h
  196. endif
  197. ifneq ($(strip $(HAS_SHADOW)),y)
  198. # Remove shadow header since shadow password support is disabled.
  199. $(RM) $(PREFIX)$(DEVEL_PREFIX)include/shadow.h
  200. endif
  201. ifneq ($(strip $(PTHREADS_DEBUG_SUPPORT)),y)
  202. # Remove thread_db header since thread debug support is disabled.
  203. $(RM) $(PREFIX)$(DEVEL_PREFIX)include/thread_db.h
  204. endif
  205. ifneq ($(strip $(UCLIBC_HAS_THREADS)),y)
  206. # Remove pthread headers since thread support is disabled.
  207. $(RM) $(PREFIX)$(DEVEL_PREFIX)include/*thread*.h
  208. $(RM) $(PREFIX)$(DEVEL_PREFIX)include/semaphore.h
  209. $(RM) $(PREFIX)$(DEVEL_PREFIX)include/bits/*thread*.h
  210. endif
  211. -@for i in `find $(PREFIX)$(DEVEL_PREFIX) -type d` ; do \
  212. chmod 755 $$i; chmod 644 $$i/*.h > /dev/null 2>&1; \
  213. done;
  214. -find $(PREFIX)$(DEVEL_PREFIX) -name .svn | xargs $(RM) -r;
  215. -chown -R `id | sed 's/^uid=\([0-9]*\).*gid=\([0-9]*\).*$$/\1:\2/'` $(PREFIX)$(DEVEL_PREFIX)
  216. ifeq ($(strip $(HAVE_SHARED)),y)
  217. for i in `find lib/ -type l -name 'lib[a-zA-Z]*.so' | \
  218. sed -e 's/lib\///'` ; do \
  219. $(LN) -sf $(RUNTIME_PREFIX_LIB_FROM_DEVEL_PREFIX_LIB)$$i.$(MAJOR_VERSION) \
  220. $(PREFIX)$(DEVEL_PREFIX)lib/$$i; \
  221. done;
  222. ifeq ($(strip $(PTHREADS_DEBUG_SUPPORT)),y)
  223. $(LN) -sf $(RUNTIME_PREFIX_LIB_FROM_DEVEL_PREFIX_LIB)libthread_db.so.1 \
  224. $(PREFIX)$(DEVEL_PREFIX)lib/libthread_db.so
  225. endif
  226. # # If we build shared libraries then the static libs are PIC...
  227. # # Make _pic.a symlinks to make mklibs.py and similar tools happy.
  228. for i in `find lib/ -type f -name '*.a' | sed -e 's/lib\///'` ; do \
  229. $(LN) -sf $$i $(PREFIX)$(DEVEL_PREFIX)lib/`echo $$i \
  230. | sed -e 's/\.a$$/_pic.a/'`; \
  231. done;
  232. # Ugh!!! Remember that libdl.a and libdl_pic.a are different. Since
  233. # libdl is pretty small, and not likely to benefit from mklibs.py and
  234. # similar, lets just remove libdl_pic.a and avoid the issue
  235. rm -f $(PREFIX)$(DEVEL_PREFIX)lib/libdl_pic.a
  236. endif
  237. # Installs run-time libraries
  238. install_runtime:
  239. ifeq ($(strip $(HAVE_SHARED)),y)
  240. $(INSTALL) -d $(PREFIX)$(RUNTIME_PREFIX)lib
  241. $(INSTALL) -m 644 lib/lib*-$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL).so \
  242. $(PREFIX)$(RUNTIME_PREFIX)lib
  243. cp -dRf lib/*.so.* $(PREFIX)$(RUNTIME_PREFIX)lib
  244. @if [ -x lib/ld-uClibc-$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL).so ] ; then \
  245. set -e; \
  246. $(SHELL_SET_X); \
  247. $(INSTALL) -m 755 lib/ld-uClibc-$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL).so \
  248. $(PREFIX)$(RUNTIME_PREFIX)lib; \
  249. fi;
  250. endif
  251. .PHONY: utils
  252. utils:
  253. $(MAKE) CROSS="$(CROSS)" CC="$(CC)" -C utils
  254. # Installs helper applications, such as 'ldd' and 'ldconfig'
  255. install_utils: utils
  256. $(MAKE) CROSS="$(CROSS)" CC="$(CC)" -C utils install
  257. finished2:
  258. $(SECHO)
  259. $(SECHO) Finished installing ...
  260. $(SECHO)
  261. else # ifeq ($(strip $(HAVE_DOT_CONFIG)),y)
  262. all: menuconfig
  263. # configuration
  264. # ---------------------------------------------------------------------------
  265. extra/config/conf:
  266. $(MAKE) -C extra/config conf
  267. extra/config/mconf:
  268. $(MAKE) -C extra/config ncurses mconf
  269. menuconfig: extra/config/mconf
  270. $(RM) -r include/bits
  271. $(INSTALL) -d include/bits
  272. @./extra/config/mconf extra/Configs/Config.in
  273. config: extra/config/conf
  274. $(RM) -r include/bits
  275. $(INSTALL) -d include/bits
  276. @./extra/config/conf extra/Configs/Config.in
  277. oldconfig: extra/config/conf
  278. $(RM) -r include/bits
  279. $(INSTALL) -d include/bits
  280. @./extra/config/conf -o extra/Configs/Config.in
  281. randconfig: extra/config/conf
  282. $(RM) -r include/bits
  283. $(INSTALL) -d include/bits
  284. @./extra/config/conf -r extra/Configs/Config.in
  285. allyesconfig: extra/config/conf
  286. $(RM) -r include/bits
  287. $(INSTALL) -d include/bits
  288. @./extra/config/conf -y extra/Configs/Config.in
  289. sed -i -e "s/^DODEBUG=.*/# DODEBUG is not set/" .config
  290. sed -i -e "s/^DOASSERTS=.*/# DOASSERTS is not set/" .config
  291. sed -i -e "s/^SUPPORT_LD_DEBUG_EARLY=.*/# SUPPORT_LD_DEBUG_EARLY is not set/" .config
  292. sed -i -e "s/^SUPPORT_LD_DEBUG=.*/# SUPPORT_LD_DEBUG is not set/" .config
  293. sed -i -e "s/^UCLIBC_MJN3_ONLY=.*/# UCLIBC_MJN3_ONLY is not set/" .config
  294. @./extra/config/conf -o extra/Configs/Config.in
  295. allnoconfig: extra/config/conf
  296. $(RM) -r include/bits
  297. $(INSTALL) -d include/bits
  298. @./extra/config/conf -n extra/Configs/Config.in
  299. defconfig: extra/config/conf
  300. $(RM) -r include/bits
  301. $(INSTALL) -d include/bits
  302. @./extra/config/conf -d extra/Configs/Config.in
  303. clean:
  304. - find . \( -name \*.o -o -name \*.a -o -name \*.so -o -name core -o -name .\#\* \) -exec $(RM) {} \;
  305. @$(RM) -r tmp lib include/bits libc/tmp _install
  306. $(RM) libc/obj.* headers
  307. $(MAKE) -C test clean
  308. $(MAKE) -C ldso clean
  309. $(MAKE) -C libc/misc/internals clean
  310. $(MAKE) -C libc/misc/wchar clean
  311. $(MAKE) -C libc/unistd clean
  312. $(MAKE) -C libc/sysdeps/linux/common clean
  313. $(MAKE) -C extra/locale clean
  314. $(MAKE) -C utils clean
  315. $(MAKE) -C libpthread clean
  316. @set -e; \
  317. for i in `(cd $(TOPDIR)/libc/sysdeps/linux/common/sys; ls *.h)` ; do \
  318. $(RM) include/sys/$$i; \
  319. done; \
  320. if [ -d libc/sysdeps/linux/$(TARGET_ARCH)/sys ] ; then \
  321. for i in `(cd libc/sysdeps/linux/$(TARGET_ARCH)/sys; ls *.h)` ; do \
  322. $(RM) include/sys/$$i; \
  323. done; \
  324. fi;
  325. @$(RM) include/linux include/asm*
  326. @if [ -d libc/sysdeps/linux/$(TARGET_ARCH) ]; then \
  327. $(MAKE) -C libc/sysdeps/linux/$(TARGET_ARCH) clean; \
  328. fi;
  329. distclean: clean
  330. $(RM) .config .config.old .config.cmd
  331. $(MAKE) -C extra clean
  332. release: distclean
  333. cd ..; \
  334. $(RM) -r uClibc-$(VERSION); \
  335. cp -dRf uClibc uClibc-$(VERSION); \
  336. find uClibc-$(VERSION)/ -type f \
  337. -name .\#* -exec $(RM) -r {} \; ; \
  338. find uClibc-$(VERSION)/ -type d \
  339. -name .svn -exec $(RM) -r {} \; ; \
  340. \
  341. tar -cvzf uClibc-$(VERSION).tar.gz uClibc-$(VERSION)/;
  342. endif # ifeq ($(strip $(HAVE_DOT_CONFIG)),y)
  343. check:
  344. $(MAKE) -C test
  345. .PHONY: dummy subdirs release distclean clean config oldconfig menuconfig