Makefile 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209
  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 crypt
  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. ln -sf $(SHARED_MAJORNAME) libc.so
  54. @$(MAKE) -C crypt shared
  55. @$(MAKE) -C ld.so-1
  56. done: $(LIBNAME) $(DO_SHARED)
  57. @echo
  58. @echo Finally finished compiling...
  59. @echo
  60. halfclean:
  61. @rm -f $(LIBNAME) crt0.o uClibc_config.h
  62. @rm -f $(SHARED_FULLNAME) $(SHARED_MAJORNAME) uClibc-0.* libc.so*
  63. headers: dummy
  64. @rm -f include/asm include/linux include/bits
  65. @ln -s $(KERNEL_SOURCE)/include/asm include/asm
  66. @if [ ! -f include/asm/unistd.h ] ; then \
  67. echo " "; \
  68. echo "The path '$(KERNEL_SOURCE)/include/asm' doesn't exist."; \
  69. echo "I bet you didn't set KERNEL_SOURCE, TARGET_ARCH or HAS_MMU in \`Config'"; \
  70. echo "correctly. Please edit \`Config' and fix these settings."; \
  71. echo " "; \
  72. /bin/false; \
  73. fi;
  74. @if [ $(HAS_MMU) != "true" ] && [ $(TARGET_ARCH) = "i386" ] ; then \
  75. echo "WARNING: I bet your x86 system really has an MMU, right?"; \
  76. echo " malloc and friends won't work unless you fix \`Config'"; \
  77. echo " "; \
  78. sleep 10; \
  79. fi;
  80. @ln -s $(KERNEL_SOURCE)/include/linux include/linux
  81. @ln -s ../sysdeps/linux/$(TARGET_ARCH)/bits include/bits
  82. @ln -sf ../../../../uClibc_config.h sysdeps/linux/$(TARGET_ARCH)/bits/uClibc_config.h
  83. tags:
  84. ctags -R
  85. clean: subdirs_clean halfclean
  86. @rm -rf tmp
  87. rm -f include/asm include/linux include/bits
  88. @$(MAKE) -C ld.so-1 clean
  89. subdirs: $(patsubst %, _dir_%, $(DIRS))
  90. subdirs_clean: $(patsubst %, _dirclean_%, $(DIRS) test)
  91. $(patsubst %, _dir_%, $(DIRS)) : dummy
  92. $(MAKE) -C $(patsubst _dir_%, %, $@)
  93. $(patsubst %, _dirclean_%, $(DIRS) test) : dummy
  94. $(MAKE) -C $(patsubst _dirclean_%, %, $@) clean
  95. install: install_runtime install_dev install_ldso
  96. # Installs shared library
  97. install_runtime:
  98. @$(MAKE) -C crypt install
  99. ifneq ($(DO_SHARED),)
  100. install -d $(INSTALL_DIR)/lib
  101. rm -rf $(INSTALL_DIR)/lib/$(SHARED_FULLNAME)
  102. rm -rf $(INSTALL_DIR)/lib/$(SHARED_MAJORNAME)
  103. rm -rf $(INSTALL_DIR)/lib/libc.so
  104. install -m 755 $(SHARED_FULLNAME) $(INSTALL_DIR)/lib/
  105. (cd $(INSTALL_DIR)/lib;ln -sf $(SHARED_FULLNAME) $(SHARED_MAJORNAME))
  106. (cd $(INSTALL_DIR)/lib;ln -sf $(SHARED_MAJORNAME) libc.so)
  107. # ldconfig is really not necessary, and impossible to cross
  108. #ifeq ($(INSTALL_DIR),)
  109. # /sbin/ldconfig -n $(INSTALL_DIR)/lib
  110. #endif
  111. else
  112. echo shared library not installed
  113. endif
  114. # Installs development library and headers
  115. # This is done with the assumption that it can blow away anything
  116. # in $(INSTALL_DIR)/include. Probably true only if you're using
  117. # a packaging system.
  118. install_dev:
  119. install -d $(INSTALL_DIR)/include
  120. install -d $(INSTALL_DIR)/include/bits
  121. rm -f $(INSTALL_DIR)/include/asm
  122. rm -f $(INSTALL_DIR)/include/linux
  123. ln -s $(KERNEL_SOURCE)/include/asm $(INSTALL_DIR)/include/asm
  124. ln -s $(KERNEL_SOURCE)/include/linux $(INSTALL_DIR)/include/linux
  125. find include/ -type f -depth -not -path "*CVS*" -exec install -D -m 644 {} $(INSTALL_DIR)/'{}' ';'
  126. find include/bits/ -type f -depth -not -path "*CVS*" -exec install -D -m 644 {} $(INSTALL_DIR)/'{}' ';'
  127. install -m 644 include/bits/uClibc_config.h $(INSTALL_DIR)/include/bits/
  128. install -d $(INSTALL_DIR)/lib
  129. rm -f $(INSTALL_DIR)/lib/$(LIBNAME)
  130. install -m 644 $(LIBNAME) $(INSTALL_DIR)/lib/
  131. @if [ -f crt0.o ] ; then install -m 644 crt0.o $(INSTALL_DIR)/lib/; fi
  132. install -d $(INSTALL_DIR)/bin
  133. $(MAKE) -C extra/gcc-uClibc install
  134. install_ldso:
  135. ifeq ($(strip $(DO_SHARED)),shared)
  136. $(MAKE) -C ld.so-1 install
  137. install -d $(INSTALL_DIR)/etc
  138. $(TOPDIR)ld.so-1/util/ldconfig
  139. else
  140. @echo "Skipping shared library support"
  141. endif
  142. uClibc_config.h: Config
  143. @echo "/* WARNING!!! AUTO-GENERATED FILE!!! DO NOT EDIT!!! */" > uClibc_config.h
  144. @echo "#if !defined __FEATURES_H && !defined __need_uClibc_config_h" >> uClibc_config.h
  145. @echo "#error Never include <bits/uClibc_config.h> directly; use <features.h> instead." >> uClibc_config.h
  146. @echo "#endif" >> uClibc_config.h
  147. @echo "#define linux 1" >> uClibc_config.h
  148. @echo "#define __linux__ 1" >> uClibc_config.h
  149. @if [ "$(HAS_MMU)" = "true" ] ; then \
  150. echo "#define __UCLIBC_HAS_MMU__ 1" >> uClibc_config.h ; \
  151. else \
  152. echo "#undef __UCLIBC_HAS_MMU__" >> uClibc_config.h ; \
  153. fi
  154. @if [ "$(HAS_FLOATS)" = "true" ] ; then \
  155. echo "#define __UCLIBC_HAS_FLOATS__ 1" >> uClibc_config.h ; \
  156. else \
  157. echo "#undef __UCLIBC_HAS_FLOATS__" >> uClibc_config.h ; \
  158. fi
  159. @if [ "$(HAS_LONG_LONG)" = "true" ] ; then \
  160. echo "#define __UCLIBC_HAS_LONG_LONG__ 1" >> uClibc_config.h ; \
  161. else \
  162. echo "#undef __UCLIBC_HAS_LONG_LONG__" >> uClibc_config.h ; \
  163. fi
  164. @if [ "$(HAS_LOCALE)" = "true" ] ; then \
  165. echo "#define __UCLIBC_HAS_LOCALE__ 1" >> uClibc_config.h ; \
  166. echo "#define __UCLIBC_LOCALE_DIR \""$(LOCALE_DIR)"\"" >> uClibc_config.h ; \
  167. else \
  168. echo "#undef __UCLIBC_HAS_LOCALE__" >> uClibc_config.h ; \
  169. fi
  170. @if [ "$(TARGET_ARCH)" = "m68k" ] ; then \
  171. echo "#define __VFORK_MACRO__ 1" >> uClibc_config.h ; \
  172. if [ `expr match "$(CC)" ".*\(m68k-elf-.*\)"`x = x ]; then \
  173. echo "#define const" >> uClibc_config.h ; \
  174. echo "#define __const" >> uClibc_config.h ; \
  175. echo "#define __extension" >> uClibc_config.h ; \
  176. fi; \
  177. else \
  178. echo "#undef __VFORK_MACRO__" >> uClibc_config.h ; \
  179. fi
  180. @if [ "$(TARGET_ARCH)" = "sh" ] ; then \
  181. echo "#define NO_UNDERSCORES 1" >> uClibc_config.h ; \
  182. else \
  183. echo "#undef NO_UNDERSCORES" >> uClibc_config.h ; \
  184. fi
  185. .PHONY: dummy subdirs