Makefile 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400
  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 libm libpthread
  29. ifeq ($(strip $(UCLIBC_HAS_GETTEXT_AWARENESS)),y)
  30. DIRS += libintl
  31. endif
  32. ifeq ($(strip $(HAVE_DOT_CONFIG)),y)
  33. all: headers pregen subdirs shared finished
  34. # In this section, we need .config
  35. -include .config.cmd
  36. .PHONY: $(SHARED_TARGET)
  37. shared: $(SHARED_TARGET)
  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 libnsl shared
  44. @$(MAKE) -C libutil shared
  45. @$(MAKE) -C libm shared
  46. @$(MAKE) -C libpthread shared
  47. ifeq ($(strip $(UCLIBC_HAS_GETTEXT_AWARENESS)),y)
  48. @$(MAKE) -C libintl shared
  49. endif
  50. else
  51. ifeq ($(SHARED_TARGET),)
  52. @echo
  53. @echo Not building shared libraries...
  54. @echo
  55. endif
  56. endif
  57. ifneq ($(SHARED_TARGET),)
  58. lib/main.o: $(ROOTDIR)/lib/libc/main.c
  59. $(CC) $(CFLAGS) $(ARCH_CFLAGS) -c -o $@ $(ROOTDIR)/lib/libc/main.c
  60. bogus $(SHARED_TARGET): lib/libc.a lib/main.o Makefile
  61. make -C $(ROOTDIR) relink
  62. $(CC) -nostartfiles -o $(SHARED_TARGET) $(ARCH_CFLAGS) -Wl,-elf2flt -nostdlib \
  63. -Wl,-shared-lib-id,${LIBID} \
  64. lib/main.o \
  65. -Wl,--whole-archive,lib/libc.a,-lgcc,--no-whole-archive
  66. $(OBJCOPY) -L _GLOBAL_OFFSET_TABLE_ -L main -L __main -L _start \
  67. -L __uClibc_main -L __uClibc_start_main -L lib_main \
  68. -L _exit_dummy_ref \
  69. -L __do_global_dtors -L __do_global_ctors \
  70. -L __CTOR_LIST__ -L __DTOR_LIST__ \
  71. -L _current_shared_library_a5_offset_ \
  72. $(SHARED_TARGET).gdb
  73. $(LN) -sf $(SHARED_TARGET).gdb .
  74. endif
  75. finished: shared
  76. @echo
  77. @echo Finally finished compiling...
  78. @echo
  79. #
  80. # Target for uClinux distro
  81. #
  82. .PHONY: romfs
  83. romfs:
  84. @if [ "$(CONFIG_BINFMT_SHARED_FLAT)" = "y" ]; then \
  85. [ -e $(ROMFSDIR)/lib ] || $(INSTALL) -d $(ROMFSDIR)/lib; \
  86. $(ROMFSINST) $(SHARED_TARGET) /lib/lib$(LIBID).so; \
  87. fi
  88. ifeq ($(strip $(HAVE_SHARED)),y)
  89. $(INSTALL) -d $(ROMFSDIR)/lib
  90. $(INSTALL) -m 644 lib/lib*-$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL).so \
  91. $(ROMFSDIR)/lib
  92. cp -fa lib/*.so.* $(ROMFSDIR)/lib/.
  93. @if [ -x lib/ld-uClibc-$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL).so ] ; then \
  94. set -x -e; \
  95. $(INSTALL) -m 755 lib/ld-uClibc-$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL).so \
  96. $(ROMFSDIR)/lib; \
  97. $(ROMFSINST) -s \
  98. /lib/ld-uClibc-$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL).so \
  99. /lib/ld-linux.so.2; \
  100. fi;
  101. endif
  102. include/bits/uClibc_config.h: .config
  103. @if [ ! -x ./extra/config/conf ] ; then \
  104. make -C extra/config conf; \
  105. fi;
  106. $(RM) -r include/bits
  107. $(INSTALL) -d include/bits
  108. @./extra/config/conf -o extra/Configs/Config.in
  109. headers: include/bits/uClibc_config.h
  110. ifeq ($(strip $(ARCH_HAS_MMU)),y)
  111. @set -x; ./extra/scripts/fix_includes.sh -k $(KERNEL_SOURCE) -t $(TARGET_ARCH)
  112. else
  113. @set -x; ./extra/scripts/fix_includes.sh -k $(KERNEL_SOURCE) -t $(TARGET_ARCH) -n
  114. endif
  115. @cd include/bits; \
  116. set -e; \
  117. for i in `ls ../../libc/sysdeps/linux/common/bits/*.h` ; do \
  118. $(LN) -fs $$i .; \
  119. done; \
  120. if [ -d ../../libc/sysdeps/linux/$(TARGET_ARCH)/bits ] ; then \
  121. for i in `ls ../../libc/sysdeps/linux/$(TARGET_ARCH)/bits/*.h` ; do \
  122. $(LN) -fs $$i .; \
  123. done; \
  124. fi
  125. @cd include/sys; \
  126. set -e; \
  127. for i in `ls ../../libc/sysdeps/linux/common/sys/*.h` ; do \
  128. $(LN) -fs $$i .; \
  129. done; \
  130. if [ -d ../../libc/sysdeps/linux/$(TARGET_ARCH)/sys ] ; then \
  131. for i in `ls ../../libc/sysdeps/linux/$(TARGET_ARCH)/sys/*.h` ; do \
  132. $(LN) -fs $$i .; \
  133. done; \
  134. fi
  135. @cd $(TOPDIR); \
  136. set -x -e; \
  137. TOPDIR=. CC="$(CC)" /bin/sh extra/scripts/gen_bits_syscall_h.sh > include/bits/sysnum.h.new; \
  138. if cmp include/bits/sysnum.h include/bits/sysnum.h.new >/dev/null 2>&1; then \
  139. $(RM) include/bits/sysnum.h.new; \
  140. else \
  141. mv -f include/bits/sysnum.h.new include/bits/sysnum.h; \
  142. fi
  143. $(MAKE) -C libc/sysdeps/linux/common headers
  144. $(MAKE) -C libc/sysdeps/linux/$(TARGET_ARCH) headers
  145. # Command used to download source code
  146. WGET:=wget --passive-ftp
  147. LOCALE_DATA_FILENAME:=uClibc-locale-030818.tgz
  148. pregen: headers
  149. ifeq ($(strip $(UCLIBC_DOWNLOAD_PREGENERATED_LOCALE_DATA)),y)
  150. (cd extra/locale; \
  151. if [ ! -f $(LOCALE_DATA_FILENAME) ] ; then \
  152. $(WGET) http://www.uclibc.org/downloads/$(LOCALE_DATA_FILENAME) ; \
  153. fi );
  154. endif
  155. ifeq ($(strip $(UCLIBC_PREGENERATED_LOCALE_DATA)),y)
  156. (cd extra/locale; zcat $(LOCALE_DATA_FILENAME) | tar -xvf -)
  157. make -C extra/locale pregen
  158. endif
  159. subdirs: $(patsubst %, _dir_%, $(DIRS))
  160. $(patsubst %, _dir_%, $(DIRS)) : dummy
  161. $(MAKE) -C $(patsubst _dir_%, %, $@)
  162. tags:
  163. ctags -R
  164. install: install_runtime install_dev finished2
  165. # Installs header files and development library links.
  166. install_dev:
  167. $(INSTALL) -d $(PREFIX)$(DEVEL_PREFIX)lib
  168. $(INSTALL) -d $(PREFIX)$(DEVEL_PREFIX)include
  169. -$(INSTALL) -m 644 lib/*.[ao] $(PREFIX)$(DEVEL_PREFIX)lib/
  170. tar -chf - include | tar -xf - -C $(PREFIX)$(DEVEL_PREFIX);
  171. ifneq ($(strip $(UCLIBC_HAS_FLOATS)),y)
  172. # Remove floating point related headers since float support is disabled.
  173. $(RM) $(PREFIX)$(DEVEL_PREFIX)include/complex.h
  174. $(RM) $(PREFIX)$(DEVEL_PREFIX)include/fpu_control.h
  175. $(RM) $(PREFIX)$(DEVEL_PREFIX)include/ieee754.h
  176. $(RM) $(PREFIX)$(DEVEL_PREFIX)include/math.h
  177. $(RM) $(PREFIX)$(DEVEL_PREFIX)include/tgmath.h
  178. endif
  179. ifneq ($(strip $(UCLIBC_HAS_WCHAR)),y)
  180. # Remove wide char headers since wide char support is disabled.
  181. $(RM) $(PREFIX)$(DEVEL_PREFIX)include/wctype.h
  182. $(RM) $(PREFIX)$(DEVEL_PREFIX)include/wchar.h
  183. endif
  184. ifneq ($(strip $(UCLIBC_HAS_LOCALE)),y)
  185. # Remove iconv header since locale support is disabled.
  186. $(RM) $(PREFIX)$(DEVEL_PREFIX)include/iconv.h
  187. endif
  188. ifneq ($(strip $(UCLIBC_HAS_GLIBC_CUSTOM_PRINTF)),y)
  189. # Remove printf header since custom print specifier support is disabled.
  190. $(RM) $(PREFIX)$(DEVEL_PREFIX)include/printf.h
  191. endif
  192. ifneq ($(strip $(UCLIBC_HAS_XLOCALE)),y)
  193. # Remove xlocale header since extended locale support is disabled.
  194. $(RM) $(PREFIX)$(DEVEL_PREFIX)include/xlocale.h
  195. endif
  196. ifneq ($(strip $(UCLIBC_HAS_GETTEXT_AWARENESS)),y)
  197. # Remove libintl header since gettext support is disabled.
  198. $(RM) $(PREFIX)$(DEVEL_PREFIX)include/libintl.h
  199. endif
  200. ifneq ($(strip $(UCLIBC_HAS_REGEX)),y)
  201. # Remove regex headers since regex support is disabled.
  202. $(RM) $(PREFIX)$(DEVEL_PREFIX)include/regex.h
  203. $(RM) $(PREFIX)$(DEVEL_PREFIX)include/regexp.h
  204. endif
  205. ifneq ($(strip $(UCLIBC_HAS_WORDEXP)),y)
  206. # Remove wordexp header since wordexp support is disabled.
  207. $(RM) $(PREFIX)$(DEVEL_PREFIX)include/wordexp.h
  208. endif
  209. ifneq ($(strip $(UCLIBC_HAS_FTW)),y)
  210. # Remove ftw header since ftw support is disabled.
  211. $(RM) $(PREFIX)$(DEVEL_PREFIX)include/ftw.h
  212. endif
  213. ifneq ($(strip $(UCLIBC_HAS_GLOB)),y)
  214. # Remove glob header since glob support is disabled.
  215. $(RM) $(PREFIX)$(DEVEL_PREFIX)include/glob.h
  216. endif
  217. ifneq ($(strip $(UCLIBC_HAS_GNU_GETOPT)),y)
  218. # Remove getopt header since gnu getopt support is disabled.
  219. $(RM) $(PREFIX)$(DEVEL_PREFIX)include/getopt.h
  220. endif
  221. ifneq ($(strip $(HAS_SHADOW)),y)
  222. # Remove getopt header since shadow password support is disabled.
  223. $(RM) $(PREFIX)$(DEVEL_PREFIX)include/shadow.h
  224. endif
  225. -@for i in `find $(PREFIX)$(DEVEL_PREFIX) -type d` ; do \
  226. chmod 755 $$i; chmod 644 $$i/*.h > /dev/null 2>&1; \
  227. done;
  228. -find $(PREFIX)$(DEVEL_PREFIX) -name CVS | xargs $(RM) -r;
  229. -chown -R `id | sed 's/^uid=\([0-9]*\).*gid=\([0-9]*\).*$$/\1.\2/'` $(PREFIX)$(DEVEL_PREFIX)
  230. ifeq ($(strip $(HAVE_SHARED)),y)
  231. for i in `find lib/ -type l -name 'lib[a-zA-Z]*.so' | \
  232. sed -e 's/lib\///'` ; do \
  233. $(LN) -sf $(RUNTIME_PREFIX)lib/$$i.$(MAJOR_VERSION) \
  234. $(PREFIX)$(DEVEL_PREFIX)lib/$$i; \
  235. done;
  236. ifeq ($(strip $(PTHREADS_DEBUG_SUPPORT)),y)
  237. ln -sf $(RUNTIME_PREFIX)lib/libthread_db.so.1 \
  238. $(PREFIX)$(DEVEL_PREFIX)lib/libthread_db.so
  239. endif
  240. # # If we build shared libraries then the static libs are PIC...
  241. # # Make _pic.a symlinks to make mklibs.py and similar tools happy.
  242. for i in `find lib/ -type f -name '*.a' | sed -e 's/lib\///'` ; do \
  243. $(LN) -sf $$i $(PREFIX)$(DEVEL_PREFIX)lib/`echo $$i \
  244. | sed -e 's/\.a$$/_pic.a/'`; \
  245. done;
  246. endif
  247. # Installs run-time libraries
  248. install_runtime:
  249. ifeq ($(strip $(HAVE_SHARED)),y)
  250. $(INSTALL) -d $(PREFIX)$(RUNTIME_PREFIX)lib
  251. $(INSTALL) -m 644 lib/lib*-$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL).so \
  252. $(PREFIX)$(RUNTIME_PREFIX)lib
  253. cp -fa lib/*.so.* $(PREFIX)$(RUNTIME_PREFIX)lib
  254. @if [ -x lib/ld-uClibc-$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL).so ] ; then \
  255. set -x -e; \
  256. $(INSTALL) -m 755 lib/ld-uClibc-$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL).so \
  257. $(PREFIX)$(RUNTIME_PREFIX)lib; \
  258. fi;
  259. endif
  260. .PHONY: utils
  261. ifeq ($(strip $(HAVE_SHARED)),y)
  262. utils:
  263. $(MAKE) CROSS=$(CROSS) CC=$(CC) -C utils
  264. else
  265. utils: dummy
  266. endif
  267. # Installs helper applications, such as 'ldd' and 'ldconfig'
  268. install_utils: utils
  269. $(MAKE) CROSS=$(CROSS) CC=$(CC) -C utils install
  270. #ifeq ($(strip $(UCLIBC_HAS_LOCALE)),y)
  271. # @$(MAKE) -C libc/misc/wchar iconv.target
  272. # $(INSTALL) -d $(PREFIX)$(RUNTIME_PREFIX)/usr/bin;
  273. # $(INSTALL) -m 755 libc/misc/wchar/iconv.target $(PREFIX)$(RUNTIME_PREFIX)/usr/bin/iconv
  274. #endif
  275. finished2:
  276. @echo
  277. @echo Finished installing...
  278. @echo
  279. else # ifeq ($(strip $(HAVE_DOT_CONFIG)),y)
  280. all: menuconfig
  281. # configuration
  282. # ---------------------------------------------------------------------------
  283. extra/config/conf:
  284. make -C extra/config conf
  285. extra/config/mconf:
  286. make -C extra/config ncurses mconf
  287. menuconfig: extra/config/mconf
  288. $(RM) -r include/bits
  289. $(INSTALL) -d include/bits
  290. @./extra/config/mconf extra/Configs/Config.in
  291. config: extra/config/conf
  292. $(RM) -r include/bits
  293. $(INSTALL) -d include/bits
  294. @./extra/config/conf extra/Configs/Config.in
  295. oldconfig: extra/config/conf
  296. $(RM) -r include/bits
  297. $(INSTALL) -d include/bits
  298. @./extra/config/conf -o extra/Configs/Config.in
  299. randconfig: extra/config/conf
  300. $(RM) -r include/bits
  301. $(INSTALL) -d include/bits
  302. @./extra/config/conf -r extra/Configs/Config.in
  303. allyesconfig: extra/config/conf
  304. $(RM) -r include/bits
  305. $(INSTALL) -d include/bits
  306. @./extra/config/conf -y extra/Configs/Config.in
  307. allnoconfig: extra/config/conf
  308. $(RM) -r include/bits
  309. $(INSTALL) -d include/bits
  310. @./extra/config/conf -n extra/Configs/Config.in
  311. defconfig: extra/config/conf
  312. $(RM) -r include/bits
  313. $(INSTALL) -d include/bits
  314. @./extra/config/conf -d extra/Configs/Config.in
  315. clean:
  316. - find . \( -name \*.o -o -name \*.a -o -name \*.so -o -name core -o -name .\#\* \) -exec $(RM) {} \;
  317. @$(RM) -r tmp lib include/bits libc/tmp _install
  318. $(MAKE) -C test clean
  319. $(MAKE) -C ldso clean
  320. $(MAKE) -C libc/misc/internals clean
  321. $(MAKE) -C libc/misc/wchar clean
  322. $(MAKE) -C libc/unistd clean
  323. $(MAKE) -C libc/sysdeps/linux/common clean
  324. $(MAKE) -C extra/locale clean
  325. @set -e; \
  326. for i in `(cd $(TOPDIR)/libc/sysdeps/linux/common/sys; ls *.h)` ; do \
  327. $(RM) include/sys/$$i; \
  328. done; \
  329. if [ -d libc/sysdeps/linux/$(TARGET_ARCH)/sys ] ; then \
  330. for i in `(cd libc/sysdeps/linux/$(TARGET_ARCH)/sys; ls *.h)` ; do \
  331. $(RM) include/sys/$$i; \
  332. done; \
  333. fi;
  334. @$(RM) include/linux include/scsi include/asm*
  335. @if [ -d libc/sysdeps/linux/$(TARGET_ARCH) ]; then \
  336. $(MAKE) -C libc/sysdeps/linux/$(TARGET_ARCH) clean; \
  337. fi;
  338. distclean: clean
  339. $(RM) .config .config.old .config.cmd
  340. $(MAKE) -C extra clean
  341. release: distclean
  342. cd ..; \
  343. $(RM) -r uClibc-$(VERSION); \
  344. cp -fa uClibc uClibc-$(VERSION); \
  345. find uClibc-$(VERSION)/ -type f \
  346. -name .\#* -exec $(RM) -r {} \; ; \
  347. find uClibc-$(VERSION)/ -type d \
  348. -name CVS -exec $(RM) -r {} \; ; \
  349. \
  350. tar -cvzf uClibc-$(VERSION).tar.gz uClibc-$(VERSION)/;
  351. endif # ifeq ($(strip $(HAVE_DOT_CONFIG)),y)
  352. .PHONY: dummy subdirs release distclean clean config oldconfig menuconfig