Makefile 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222
  1. # Makefile for uClibc
  2. #
  3. # Copyright (C) 2000 by Lineo, inc.
  4. #
  5. # This program is free software; you can redistribute it and/or modify it under
  6. # the terms of the GNU Library General Public License as published by the Free
  7. # Software Foundation; either version 2 of the License, or (at your option) any
  8. # later version.
  9. #
  10. # This program is distributed in the hope that it will be useful, but WITHOUT
  11. # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
  12. # FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more
  13. # details.
  14. #
  15. # You should have received a copy of the GNU Library General Public License
  16. # along with this program; if not, write to the Free Software Foundation, Inc.,
  17. # 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  18. #
  19. # Derived in part from the Linux-8086 C library, the GNU C Library, and several
  20. # other sundry sources. Files within this library are copyright by their
  21. # respective copyright holders.
  22. #--------------------------------------------------------
  23. #
  24. #There are a number of configurable options in "Config"
  25. #
  26. #--------------------------------------------------------
  27. TOPDIR=./
  28. include Rules.mak
  29. DIRS = extra misc pwd_grp stdio string termios inet signal stdlib sysdeps unistd libcrypt libutil libm
  30. ifeq ($(strip $(HAS_MMU)),true)
  31. DO_SHARED=shared
  32. endif
  33. all: halfclean headers uClibc_config.h subdirs $(LIBNAME) $(DO_SHARED) done
  34. $(LIBNAME): subdirs
  35. $(CROSS)ranlib $(LIBNAME)
  36. shared: $(LIBNAME)
  37. @rm -rf tmp
  38. @mkdir tmp
  39. @$(MAKE) -C ld.so-1 ldso
  40. @(cd tmp; CC=$(CC) /bin/sh ../extra/scripts/get-needed-libgcc-objects.sh)
  41. if [ -s ./tmp/libgcc-need.a ] ; then \
  42. $(CC) -g $(LDFLAGS) -shared -o $(SHARED_FULLNAME) \
  43. -Wl,-soname,$(SHARED_MAJORNAME) -Wl,--whole-archive \
  44. ./$(LIBNAME) ./tmp/libgcc-need.a \
  45. $(LDSO) ; \
  46. else \
  47. $(CC) -g $(LDFLAGS) -shared -o $(SHARED_FULLNAME) \
  48. -Wl,-soname,$(SHARED_MAJORNAME) -Wl,--whole-archive \
  49. ./$(LIBNAME) $(LDSO) ; \
  50. fi
  51. @rm -rf tmp
  52. ln -sf $(SHARED_FULLNAME) $(SHARED_MAJORNAME)
  53. @$(MAKE) -C libcrypt shared
  54. @$(MAKE) -C libutil shared
  55. @$(MAKE) -C libm shared
  56. @$(MAKE) -C ld.so-1
  57. done: $(LIBNAME) $(DO_SHARED)
  58. @echo
  59. @echo Finally finished compiling...
  60. @echo
  61. halfclean:
  62. @rm -f $(LIBNAME) crt0.o uClibc_config.h
  63. @rm -f $(SHARED_FULLNAME) $(SHARED_MAJORNAME) uClibc-0.* libc.so*
  64. headers: dummy
  65. @rm -f include/asm include/linux include/bits
  66. @ln -s $(KERNEL_SOURCE)/include/asm include/asm
  67. @if [ ! -f include/asm/unistd.h ] ; then \
  68. echo " "; \
  69. echo "The path '$(KERNEL_SOURCE)/include/asm' doesn't exist."; \
  70. echo "I bet you didn't set KERNEL_SOURCE, TARGET_ARCH or HAS_MMU in \`Config'"; \
  71. echo "correctly. Please edit \`Config' and fix these settings."; \
  72. echo " "; \
  73. /bin/false; \
  74. fi;
  75. @if [ $(HAS_MMU) != "true" ] && [ $(TARGET_ARCH) = "i386" ] ; then \
  76. echo "WARNING: I bet your x86 system really has an MMU, right?"; \
  77. echo " malloc and friends won't work unless you fix \`Config'"; \
  78. echo " "; \
  79. sleep 10; \
  80. fi;
  81. @ln -s $(KERNEL_SOURCE)/include/linux include/linux
  82. @ln -s ../sysdeps/linux/$(TARGET_ARCH)/bits include/bits
  83. @ln -sf ../../../../uClibc_config.h sysdeps/linux/$(TARGET_ARCH)/bits/uClibc_config.h
  84. tags:
  85. ctags -R
  86. clean: subdirs_clean halfclean
  87. @rm -rf tmp
  88. rm -f include/asm include/linux include/bits
  89. @$(MAKE) -C ld.so-1 clean
  90. subdirs: $(patsubst %, _dir_%, $(DIRS))
  91. subdirs_clean: $(patsubst %, _dirclean_%, $(DIRS) test)
  92. $(patsubst %, _dir_%, $(DIRS)) : dummy
  93. $(MAKE) -C $(patsubst _dir_%, %, $@)
  94. $(patsubst %, _dirclean_%, $(DIRS) test) : dummy
  95. $(MAKE) -C $(patsubst _dirclean_%, %, $@) clean
  96. install: install_runtime install_dev install_ldso
  97. # Installs shared library
  98. install_runtime:
  99. @$(MAKE) -C libcrypt install
  100. @$(MAKE) -C libutil install
  101. @$(MAKE) -C libm install
  102. ifneq ($(DO_SHARED),)
  103. install -d $(INSTALL_DIR)/lib
  104. rm -rf $(INSTALL_DIR)/lib/$(SHARED_FULLNAME)
  105. rm -rf $(INSTALL_DIR)/lib/$(SHARED_MAJORNAME)
  106. rm -rf $(INSTALL_DIR)/lib/libc.so
  107. install -m 755 $(SHARED_FULLNAME) $(INSTALL_DIR)/lib/
  108. (cd $(INSTALL_DIR)/lib;ln -sf $(SHARED_FULLNAME) $(SHARED_MAJORNAME))
  109. else
  110. echo shared library not installed
  111. endif
  112. # Installs development library and headers
  113. # This is done with the assumption that it can blow away anything
  114. # in $(INSTALL_DIR)/include. Probably true only if you're using
  115. # a packaging system.
  116. install_dev:
  117. install -d $(INSTALL_DIR)/include
  118. install -d $(INSTALL_DIR)/include/bits
  119. rm -f $(INSTALL_DIR)/include/asm
  120. rm -f $(INSTALL_DIR)/include/linux
  121. ln -s $(KERNEL_SOURCE)/include/asm $(INSTALL_DIR)/include/asm
  122. ln -s $(KERNEL_SOURCE)/include/linux $(INSTALL_DIR)/include/linux
  123. find include/ -type f -depth -not -path "*CVS*" -exec install -D -m 644 {} $(INSTALL_DIR)/'{}' ';'
  124. find include/bits/ -type f -depth -not -path "*CVS*" -exec install -D -m 644 {} $(INSTALL_DIR)/'{}' ';'
  125. install -m 644 include/bits/uClibc_config.h $(INSTALL_DIR)/include/bits/
  126. install -d $(INSTALL_DIR)/lib
  127. rm -f $(INSTALL_DIR)/lib/$(LIBNAME)
  128. install -m 644 $(LIBNAME) $(INSTALL_DIR)/lib/
  129. @if [ -f crt0.o ] ; then install -m 644 crt0.o $(INSTALL_DIR)/lib/; fi
  130. install -d $(INSTALL_DIR)/bin
  131. $(MAKE) -C extra/gcc-uClibc install
  132. install_ldso:
  133. ifeq ($(strip $(DO_SHARED)),shared)
  134. $(MAKE) -C ld.so-1 install
  135. install -d $(INSTALL_DIR)/etc
  136. #$(TOPDIR)ld.so-1/util/ldconfig
  137. else
  138. @echo "Skipping shared library support"
  139. endif
  140. uClibc_config.h: Config
  141. @echo "/* WARNING!!! AUTO-GENERATED FILE!!! DO NOT EDIT!!! */" > uClibc_config.h
  142. @echo "#if !defined __FEATURES_H && !defined __need_uClibc_config_h" >> uClibc_config.h
  143. @echo "#error Never include <bits/uClibc_config.h> directly; use <features.h> instead." >> uClibc_config.h
  144. @echo "#endif" >> uClibc_config.h
  145. @echo "#define linux 1" >> uClibc_config.h
  146. @echo "#define __linux__ 1" >> uClibc_config.h
  147. @if [ "$(HAS_MMU)" = "true" ] ; then \
  148. echo "#define __UCLIBC_HAS_MMU__ 1" >> uClibc_config.h ; \
  149. else \
  150. echo "#undef __UCLIBC_HAS_MMU__" >> uClibc_config.h ; \
  151. fi
  152. @if [ "$(HAS_FLOATS)" = "true" ] ; then \
  153. echo "#define __UCLIBC_HAS_FLOATS__ 1" >> uClibc_config.h ; \
  154. else \
  155. echo "#undef __UCLIBC_HAS_FLOATS__" >> uClibc_config.h ; \
  156. fi
  157. @if [ "$(HAS_DOUBLE)" = "true" ] ; then \
  158. echo "#define __UCLIBC_HAS_DOUBLE__ 1" >> uClibc_config.h ; \
  159. else \
  160. echo "#undef __UCLIBC_HAS_DOUBLE__" >> uClibc_config.h ; \
  161. fi
  162. @if [ "$(HAS_LONG_DOUBLE)" = "true" ] ; then \
  163. echo "#define __UCLIBC_HAS_LONG_DOUBLE__ 1" >> uClibc_config.h ; \
  164. else \
  165. echo "#undef __UCLIBC_HAS_LONG_DOUBLE__" >> uClibc_config.h ; \
  166. fi
  167. @if [ "$(HAS_LONG_LONG)" = "true" ] ; then \
  168. echo "#define __UCLIBC_HAS_LONG_LONG__ 1" >> uClibc_config.h ; \
  169. else \
  170. echo "#undef __UCLIBC_HAS_LONG_LONG__" >> uClibc_config.h ; \
  171. fi
  172. @if [ "$(HAS_LOCALE)" = "true" ] ; then \
  173. echo "#define __UCLIBC_HAS_LOCALE__ 1" >> uClibc_config.h ; \
  174. echo "#define __UCLIBC_LOCALE_DIR \""$(LOCALE_DIR)"\"" >> uClibc_config.h ; \
  175. else \
  176. echo "#undef __UCLIBC_HAS_LOCALE__" >> uClibc_config.h ; \
  177. fi
  178. @if [ "$(TARGET_ARCH)" = "m68k" ] ; then \
  179. echo "#define __VFORK_MACRO__ 1" >> uClibc_config.h ; \
  180. if [ `expr match "$(CC)" ".*\(m68k-elf-.*\)"`x = x ]; then \
  181. echo "#define const" >> uClibc_config.h ; \
  182. echo "#define __const" >> uClibc_config.h ; \
  183. echo "#define __extension" >> uClibc_config.h ; \
  184. fi; \
  185. else \
  186. echo "#undef __VFORK_MACRO__" >> uClibc_config.h ; \
  187. fi
  188. @if [ "$(TARGET_ARCH)" = "sh" ] ; then \
  189. echo "#define NO_UNDERSCORES 1" >> uClibc_config.h ; \
  190. else \
  191. echo "#undef NO_UNDERSCORES" >> uClibc_config.h ; \
  192. fi
  193. @if [ "$(INCLUDE_RPC)" = "true" ] ; then \
  194. echo "#define __UCLIBC_HAS_RPC__ 1" >> uClibc_config.h ; \
  195. else \
  196. echo "#undef __UCLIBC_HAS_RPC__" >> uClibc_config.h ; \
  197. fi
  198. .PHONY: dummy subdirs