Makefile 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438
  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 libnsl libutil libm libpthread libintl
  33. ifeq ($(strip $(HAVE_DOT_CONFIG)),y)
  34. all: headers subdirs shared utils finished
  35. # In this section, we need .config
  36. -include .config.cmd
  37. .PHONY: $(SHARED_TARGET)
  38. shared: $(SHARED_TARGET)
  39. ifeq ($(strip $(HAVE_SHARED)),y)
  40. @$(MAKE) -C libc shared
  41. @$(MAKE) -C ldso shared
  42. @$(MAKE) -C libcrypt shared
  43. @$(MAKE) -C libresolv shared
  44. @$(MAKE) -C libnsl shared
  45. @$(MAKE) -C libutil shared
  46. @$(MAKE) -C libm shared
  47. @$(MAKE) -C libpthread shared
  48. @$(MAKE) -C libintl shared
  49. else
  50. ifeq ($(SHARED_TARGET),)
  51. @echo
  52. @echo Not building shared libraries...
  53. @echo
  54. endif
  55. endif
  56. ifneq ($(SHARED_TARGET),)
  57. lib/main.o: $(ROOTDIR)/lib/libc/main.c
  58. $(CC) $(CFLAGS) $(ARCH_CFLAGS) -c -o $@ $(ROOTDIR)/lib/libc/main.c
  59. bogus $(SHARED_TARGET): lib/libc.a lib/main.o Makefile
  60. make -C $(ROOTDIR) relink
  61. $(CC) -nostartfiles -o $(SHARED_TARGET) $(ARCH_CFLAGS) -Wl,-elf2flt -nostdlib \
  62. -Wl,-shared-lib-id,${LIBID} \
  63. lib/main.o \
  64. -Wl,--whole-archive,lib/libc.a,-lgcc,--no-whole-archive
  65. $(OBJCOPY) -L _GLOBAL_OFFSET_TABLE_ -L main -L __main -L _start \
  66. -L __uClibc_main -L __uClibc_start_main -L lib_main \
  67. -L _exit_dummy_ref \
  68. -L __do_global_dtors -L __do_global_ctors \
  69. -L __CTOR_LIST__ -L __DTOR_LIST__ \
  70. -L _current_shared_library_a5_offset_ \
  71. $(SHARED_TARGET).gdb
  72. ln -sf $(SHARED_TARGET).gdb .
  73. endif
  74. finished: shared
  75. @echo
  76. @echo Finally finished compiling...
  77. @echo
  78. #
  79. # Target for uClinux distro
  80. #
  81. .PHONY: romfs
  82. romfs:
  83. @if [ "$(CONFIG_BINFMT_SHARED_FLAT)" = "y" ]; then \
  84. [ -e $(ROMFSDIR)/lib ] || mkdir -p $(ROMFSDIR)/lib; \
  85. $(ROMFSINST) $(SHARED_TARGET) /lib/lib$(LIBID).so; \
  86. fi
  87. ifeq ($(strip $(HAVE_SHARED)),y)
  88. install -d $(ROMFSDIR)/lib
  89. install -m 644 lib/lib*-$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL).so \
  90. $(ROMFSDIR)/lib
  91. cp -fa lib/*.so.* $(ROMFSDIR)/lib/.
  92. @if [ -x lib/ld-uClibc-$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL).so ] ; then \
  93. set -x -e; \
  94. install -m 755 lib/ld-uClibc-$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL).so \
  95. $(ROMFSDIR)/lib; \
  96. $(ROMFSINST) -s \
  97. /lib/ld-uClibc-$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL).so \
  98. /lib/ld-linux.so.2; \
  99. fi;
  100. endif
  101. include/bits/uClibc_config.h: .config
  102. @if [ ! -x ./extra/config/conf ] ; then \
  103. make -C extra/config conf; \
  104. fi;
  105. rm -rf include/bits
  106. mkdir -p include/bits
  107. @./extra/config/conf -o extra/Configs/Config.$(TARGET_ARCH)
  108. headers: include/bits/uClibc_config.h
  109. rm -f include/asm;
  110. @if [ "$(TARGET_ARCH)" = "powerpc" ];then \
  111. ln -fs $(KERNEL_SOURCE)/include/asm-ppc include/asm; \
  112. elif [ "$(TARGET_ARCH)" = "mips" ];then \
  113. ln -fs $(KERNEL_SOURCE)/include/asm-mips include/asm; \
  114. elif [ "$(TARGET_ARCH)" = "mipsel" ];then \
  115. ln -fs $(KERNEL_SOURCE)/include/asm-mips include/asm; \
  116. cd $(shell pwd)/libc/sysdeps/linux; \
  117. ln -fs mips mipsel; \
  118. cd $(shell pwd)/ldso/ldso; \
  119. ln -fs mips mipsel; \
  120. cd $(shell pwd)/libpthread/linuxthreads/sysdeps; \
  121. ln -fs mips mipsel; \
  122. elif [ "$(TARGET_ARCH)" = "cris" ];then \
  123. ln -fs $(KERNEL_SOURCE)/include/asm-cris include/asm; \
  124. else \
  125. if [ "$(UCLIBC_HAS_MMU)" != "y" ]; then \
  126. if [ -d $(KERNEL_SOURCE)/include/asm-$(TARGET_ARCH)nommu ] ; then \
  127. ln -fs $(KERNEL_SOURCE)/include/asm-$(TARGET_ARCH)nommu include/asm;\
  128. else \
  129. ln -fs $(KERNEL_SOURCE)/include/asm-$(TARGET_ARCH) include/asm; \
  130. fi; \
  131. else \
  132. ln -fs $(KERNEL_SOURCE)/include/asm-$(TARGET_ARCH) include/asm; \
  133. fi; \
  134. fi;
  135. rm -f include/asm-generic;
  136. ln -fs $(KERNEL_SOURCE)/include/asm-generic include/asm-generic;
  137. @if [ ! -f include/asm/unistd.h ] ; then \
  138. set -e; \
  139. echo " "; \
  140. echo "The path '$(KERNEL_SOURCE)/include/asm' doesn't exist."; \
  141. echo "I bet you did not set KERNEL_SOURCE, TARGET_ARCH or UCLIBC_HAS_MMU"; \
  142. echo "correctly when you configured uClibc. Please fix these settings."; \
  143. echo " "; \
  144. false; \
  145. fi;
  146. rm -f include/linux include/scsi
  147. ln -fs $(KERNEL_SOURCE)/include/linux include/linux
  148. ln -fs $(KERNEL_SOURCE)/include/scsi include/scsi
  149. @cd include/bits; \
  150. set -e; \
  151. for i in `ls ../../libc/sysdeps/linux/common/bits/*.h` ; do \
  152. ln -fs $$i .; \
  153. done; \
  154. if [ -d ../../libc/sysdeps/linux/$(TARGET_ARCH)/bits ] ; then \
  155. for i in `ls ../../libc/sysdeps/linux/$(TARGET_ARCH)/bits/*.h` ; do \
  156. ln -fs $$i .; \
  157. done; \
  158. fi
  159. @cd include/sys; \
  160. set -e; \
  161. for i in `ls ../../libc/sysdeps/linux/common/sys/*.h` ; do \
  162. ln -fs $$i .; \
  163. done; \
  164. if [ -d ../../libc/sysdeps/linux/$(TARGET_ARCH)/sys ] ; then \
  165. for i in `ls ../../libc/sysdeps/linux/$(TARGET_ARCH)/sys/*.h` ; do \
  166. ln -fs $$i .; \
  167. done; \
  168. fi
  169. @cd $(TOPDIR); \
  170. set -x -e; \
  171. TOPDIR=. CC="$(CC)" /bin/sh extra/scripts/gen_bits_syscall_h.sh > include/bits/sysnum.h.new; \
  172. if cmp include/bits/sysnum.h include/bits/sysnum.h.new >/dev/null 2>&1; then \
  173. $(RM) include/bits/sysnum.h.new; \
  174. else \
  175. mv -f include/bits/sysnum.h.new include/bits/sysnum.h; \
  176. fi
  177. $(MAKE) -C libc/sysdeps/linux/$(TARGET_ARCH) headers
  178. subdirs: $(patsubst %, _dir_%, $(DIRS))
  179. $(patsubst %, _dir_%, $(DIRS)) : dummy
  180. $(MAKE) -C $(patsubst _dir_%, %, $@)
  181. tags:
  182. ctags -R
  183. install: install_dev install_runtime install_toolchain install_utils finished2
  184. # Installs header files and development library links.
  185. install_dev:
  186. install -d $(PREFIX)$(DEVEL_PREFIX)/lib
  187. install -d $(PREFIX)$(DEVEL_PREFIX)/usr/lib
  188. install -d $(PREFIX)$(DEVEL_PREFIX)/include
  189. -install -m 644 lib/*.[ao] $(PREFIX)$(DEVEL_PREFIX)/lib/
  190. tar -chf - include | tar -xf - -C $(PREFIX)$(DEVEL_PREFIX);
  191. -@for i in `find $(PREFIX)$(DEVEL_PREFIX) -type d` ; do \
  192. chmod -f 755 $$i; chmod -f 644 $$i/*.h; \
  193. done;
  194. -find $(PREFIX)$(DEVEL_PREFIX) -name CVS | xargs rm -rf;
  195. -chown -R `id | sed 's/^uid=\([0-9]*\).*gid=\([0-9]*\).*$$/\1.\2/'` $(PREFIX)$(DEVEL_PREFIX)
  196. ifeq ($(strip $(HAVE_SHARED)),y)
  197. -install -m 644 lib/*.so $(PREFIX)$(DEVEL_PREFIX)/lib/
  198. -find lib/ -type l -name '*.so' -exec cp -fa {} $(PREFIX)$(DEVEL_PREFIX)/lib ';'
  199. # If we build shared libraries then the static libs are PIC...
  200. # Make _pic.a symlinks to make mklibs.py and similar tools happy.
  201. for i in `find lib/ -type f -name '*.a' | sed -e 's/lib\///'` ; do \
  202. ln -sf $$i $(PREFIX)$(DEVEL_PREFIX)/lib/`echo $$i | sed -e 's/\.a$$/_pic.a/'`; \
  203. done
  204. endif
  205. # Installs run-time libraries and helper apps onto the host system
  206. # allowing cross development. If you want to deploy to a target
  207. # system, use the "install_target" target instead...
  208. install_runtime:
  209. ifeq ($(strip $(HAVE_SHARED)),y)
  210. install -d $(PREFIX)$(DEVEL_PREFIX)/lib
  211. install -d $(PREFIX)$(DEVEL_PREFIX)/bin
  212. install -m 644 lib/lib*-$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL).so \
  213. $(PREFIX)$(DEVEL_PREFIX)/lib
  214. cp -fa lib/*.so.* $(PREFIX)$(DEVEL_PREFIX)/lib
  215. @if [ -x lib/ld-uClibc-$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL).so ] ; then \
  216. set -x -e; \
  217. install -m 755 lib/ld-uClibc-$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL).so \
  218. $(PREFIX)$(DEVEL_PREFIX)/lib; \
  219. fi;
  220. #@if [ -x lib/ld-uClibc-$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL).so ] ; then \
  221. # install -d $(PREFIX)$(SHARED_LIB_LOADER_PATH); \
  222. # ln -sf $(PREFIX)$(DEVEL_PREFIX)/lib/ld-uClibc-$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL).so \
  223. # $(PREFIX)$(SHARED_LIB_LOADER_PATH)/$(UCLIBC_LDSO); \
  224. #fi;
  225. endif
  226. install_toolchain:
  227. install -d $(PREFIX)$(DEVEL_PREFIX)/lib
  228. install -d $(PREFIX)$(DEVEL_PREFIX)/bin
  229. install -d $(PREFIX)$(DEVEL_TOOL_PREFIX)/bin
  230. install -d $(PREFIX)$(SYSTEM_DEVEL_PREFIX)/bin
  231. $(MAKE) -C extra/gcc-uClibc install
  232. ifeq ($(strip $(HAVE_SHARED)),y)
  233. utils: $(TOPDIR)ldso/util/ldd
  234. $(MAKE) -C ldso utils
  235. else
  236. utils: dummy
  237. endif
  238. install_utils: utils
  239. ifeq ($(strip $(HAVE_SHARED)),y)
  240. install -d $(PREFIX)$(DEVEL_TOOL_PREFIX)/bin;
  241. install -m 755 ldso/util/ldd \
  242. $(PREFIX)$(SYSTEM_DEVEL_PREFIX)/bin/$(TARGET_ARCH)-uclibc-ldd
  243. ln -fs $(SYSTEM_DEVEL_PREFIX)/bin/$(TARGET_ARCH)-uclibc-ldd \
  244. $(PREFIX)$(DEVEL_TOOL_PREFIX)/bin/ldd
  245. # For now, don't bother with readelf since surely the host
  246. # system has binutils, or we couldn't have gotten this far...
  247. #install -m 755 ldso/util/readelf \
  248. # $(PREFIX)$(SYSTEM_DEVEL_PREFIX)/bin/$(TARGET_ARCH)-uclibc-readelf
  249. #ln -fs $(SYSTEM_DEVEL_PREFIX)/bin/$(TARGET_ARCH)-uclibc-readelf \
  250. # $(PREFIX)$(DEVEL_TOOL_PREFIX)/bin/readelf
  251. @if [ -x ldso/util/ldconfig ] ; then \
  252. set -x -e; \
  253. install -d $(PREFIX)$(DEVEL_PREFIX)/etc; \
  254. install -m 755 ldso/util/ldconfig \
  255. $(PREFIX)$(SYSTEM_DEVEL_PREFIX)/bin/$(TARGET_ARCH)-uclibc-ldconfig; \
  256. ln -fs $(SYSTEM_DEVEL_PREFIX)/bin/$(TARGET_ARCH)-uclibc-ldconfig \
  257. $(PREFIX)$(DEVEL_TOOL_PREFIX)/bin/ldconfig; \
  258. fi;
  259. endif
  260. # Installs run-time libraries and helper apps in preparation for
  261. # deploying onto a target system, but installed below wherever
  262. # $PREFIX is set to, allowing you to package up the result for
  263. # deployment onto your target system.
  264. install_target:
  265. ifeq ($(strip $(HAVE_SHARED)),y)
  266. install -d $(PREFIX)$(TARGET_PREFIX)/lib
  267. install -d $(PREFIX)$(TARGET_PREFIX)/usr/bin
  268. install -m 644 lib/lib*-$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL).so \
  269. $(PREFIX)$(TARGET_PREFIX)/lib
  270. cp -fa lib/*.so.* $(PREFIX)$(TARGET_PREFIX)/lib
  271. @if [ -x lib/ld-uClibc-$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL).so ] ; then \
  272. set -x -e; \
  273. install -m 755 lib/ld-uClibc-$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL).so \
  274. $(PREFIX)$(TARGET_PREFIX)/lib; \
  275. fi;
  276. #@if [ -x lib/ld-uClibc-$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL).so ] ; then \
  277. # install -d $(PREFIX)$(SHARED_LIB_LOADER_PATH); \
  278. # ln -sf $(PREFIX)$(TARGET_PREFIX)/lib/ld-uClibc-$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL).so \
  279. # $(PREFIX)$(SHARED_LIB_LOADER_PATH)/$(UCLIBC_LDSO); \
  280. #fi;
  281. endif
  282. install_target_utils:
  283. ifeq ($(strip $(HAVE_SHARED)),y)
  284. @$(MAKE) -C ldso/util ldd.target readelf.target #ldconfig.target
  285. install -d $(PREFIX)$(TARGET_PREFIX)/usr/bin;
  286. install -m 755 ldso/util/ldd.target $(PREFIX)$(TARGET_PREFIX)/usr/bin/ldd
  287. install -m 755 ldso/util/readelf.target $(PREFIX)$(TARGET_PREFIX)/usr/bin/readelf
  288. @if [ -x ldso/util/ldconfig.target ] ; then \
  289. set -x -e; \
  290. install -d $(PREFIX)$(TARGET_PREFIX)/etc; \
  291. install -d $(PREFIX)$(TARGET_PREFIX)/sbin; \
  292. install -m 755 ldso/util/ldconfig.target $(PREFIX)$(TARGET_PREFIX)/sbin/ldconfig; \
  293. fi;
  294. endif
  295. ifeq ($(strip $(UCLIBC_HAS_LOCALE)),y)
  296. @$(MAKE) -C libc/misc/wchar iconv.target
  297. install -d $(PREFIX)$(TARGET_PREFIX)/usr/bin;
  298. install -m 755 libc/misc/wchar/iconv.target $(PREFIX)$(TARGET_PREFIX)/usr/bin/iconv
  299. endif
  300. finished2:
  301. @echo
  302. @echo Finished installing...
  303. @echo
  304. else # ifeq ($(strip $(HAVE_DOT_CONFIG)),y)
  305. all: menuconfig
  306. # configuration
  307. # ---------------------------------------------------------------------------
  308. extra/config/conf:
  309. make -C extra/config conf
  310. -@if [ ! -f .config ] ; then \
  311. cp extra/Configs/Config.$(TARGET_ARCH).default .config; \
  312. fi
  313. extra/config/mconf:
  314. make -C extra/config ncurses conf mconf
  315. -@if [ ! -f .config ] ; then \
  316. cp extra/Configs/Config.$(TARGET_ARCH).default .config; \
  317. fi
  318. menuconfig: extra/config/mconf
  319. rm -rf include/bits
  320. mkdir -p include/bits
  321. @./extra/config/mconf extra/Configs/Config.$(TARGET_ARCH)
  322. config: extra/config/conf
  323. rm -rf include/bits
  324. mkdir -p include/bits
  325. @./extra/config/conf extra/Configs/Config.$(TARGET_ARCH)
  326. oldconfig: extra/config/conf
  327. rm -rf include/bits
  328. mkdir -p include/bits
  329. @./extra/config/conf -o extra/Configs/Config.$(TARGET_ARCH)
  330. randconfig: extra/config/conf
  331. rm -rf include/bits
  332. mkdir -p include/bits
  333. @./extra/config/conf -r extra/Configs/Config.$(TARGET_ARCH)
  334. allyesconfig: extra/config/conf
  335. rm -rf include/bits
  336. mkdir -p include/bits
  337. @./extra/config/conf -y extra/Configs/Config.$(TARGET_ARCH)
  338. allnoconfig: extra/config/conf
  339. rm -rf include/bits
  340. mkdir -p include/bits
  341. @./extra/config/conf -n extra/Configs/Config.$(TARGET_ARCH)
  342. defconfig: extra/config/conf
  343. rm -rf include/bits
  344. mkdir -p include/bits
  345. @./extra/config/conf -d extra/Configs/Config.$(TARGET_ARCH)
  346. clean:
  347. - find . \( -name \*.o -o -name \*.a -o -name \*.so -o -name core -o -name .\#\* \) -exec rm -f {} \;
  348. @rm -rf tmp lib include/bits libc/tmp _install
  349. $(MAKE) -C test clean
  350. $(MAKE) -C ldso clean
  351. $(MAKE) -C libc/misc/internals clean
  352. $(MAKE) -C libc/misc/wchar clean
  353. $(MAKE) -C libc/unistd clean
  354. $(MAKE) -C libc/sysdeps/linux/common clean
  355. $(MAKE) -C extra/gcc-uClibc clean
  356. $(MAKE) -C extra/locale clean
  357. @set -e; \
  358. for i in `(cd $(TOPDIR)/libc/sysdeps/linux/common/sys; ls *.h)` ; do \
  359. rm -f include/sys/$$i; \
  360. done; \
  361. if [ -d libc/sysdeps/linux/$(TARGET_ARCH)/sys ] ; then \
  362. for i in `(cd libc/sysdeps/linux/$(TARGET_ARCH)/sys; ls *.h)` ; do \
  363. rm -f include/sys/$$i; \
  364. done; \
  365. fi;
  366. @rm -f include/linux include/scsi include/asm
  367. @if [ -d libc/sysdeps/linux/$(TARGET_ARCH) ]; then \
  368. $(MAKE) -C libc/sysdeps/linux/$(TARGET_ARCH) clean; \
  369. fi;
  370. @if [ "$(TARGET_ARCH)" = "mipsel" ]; then \
  371. $(MAKE) -C libc/sysdeps/linux/mips clean; \
  372. rm -f ldso/ldso/mipsel; \
  373. rm -f libc/sysdeps/linux/mipsel; \
  374. rm -f libpthread/linuxthreads/sysdeps/mipsel; \
  375. fi;
  376. distclean: clean
  377. rm -f .config .config.old .config.cmd
  378. $(MAKE) -C extra clean
  379. release: distclean
  380. cd ..; \
  381. rm -rf uClibc-$(VERSION); \
  382. cp -fa uClibc uClibc-$(VERSION); \
  383. find uClibc-$(VERSION)/ -type f \
  384. -name .\#* -exec rm -rf {} \; ; \
  385. find uClibc-$(VERSION)/ -type d \
  386. -name CVS -exec rm -rf {} \; ; \
  387. \
  388. tar -cvzf uClibc-$(VERSION).tar.gz uClibc-$(VERSION)/;
  389. endif # ifeq ($(strip $(HAVE_DOT_CONFIG)),y)
  390. .PHONY: dummy subdirs release distclean clean config oldconfig menuconfig