Makefile 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193
  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. include Rules.mak
  28. DIRS = extra misc pwd_grp stdio string termios inet signal stdlib sysdeps unistd
  29. ifeq ($(strip $(HAS_MMU)),true)
  30. DO_SHARED=shared
  31. endif
  32. all: $(STATIC_NAME) $(DO_SHARED) done
  33. $(STATIC_NAME): halfclean headers uClibc_config.h subdirs
  34. $(CROSS)ranlib $(STATIC_NAME)
  35. # Surely there is a better way to do this then dumping all
  36. # the objects into a tmp dir. Please -- someone enlighten me.
  37. shared: $(STATIC_NAME)
  38. @rm -rf tmp
  39. @mkdir tmp
  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_NAME) \
  43. -Wl,-soname,$(SHARED_NAME) -Wl,--whole-archive \
  44. ./libc.a ./tmp/libgcc-need.a ; \
  45. else \
  46. $(CC) -g $(LDFLAGS) -shared -o $(SHARED_NAME) \
  47. -Wl,-soname,$(SHARED_NAME) -Wl,--whole-archive ./libc.a ; \
  48. fi
  49. @rm -rf tmp
  50. done: $(STATIC_NAME) $(DO_SHARED)
  51. @echo
  52. @echo Finally finished compiling...
  53. @echo
  54. halfclean:
  55. @rm -f $(STATIC_NAME) $(SHARED_NAME) crt0.o uClibc_config.h
  56. headers: dummy
  57. @rm -f include/asm include/linux include/bits
  58. @ln -s $(KERNEL_SOURCE)/include/asm include/asm
  59. @if [ ! -f include/asm/unistd.h ] ; then \
  60. echo " "; \
  61. echo "The path '$(KERNEL_SOURCE)/include/asm' doesn't exist."; \
  62. echo "I bet you didn't set KERNEL_SOURCE, TARGET_ARCH or HAS_MMU in \`Config'"; \
  63. echo "correctly. Please edit \`Config' and fix these settings."; \
  64. echo " "; \
  65. /bin/false; \
  66. fi;
  67. @if [ $(HAS_MMU) != "true" ] && [ $(TARGET_ARCH) = "i386" ] ; then \
  68. echo "WARNING: I bet your x86 system really has an MMU, right?"; \
  69. echo " malloc and friends won't work unless you fix \`Config'"; \
  70. echo " "; \
  71. sleep 10; \
  72. fi;
  73. @ln -s $(KERNEL_SOURCE)/include/linux include/linux
  74. @ln -s ../sysdeps/linux/$(TARGET_ARCH)/bits include/bits
  75. @ln -sf ../../../../uClibc_config.h sysdeps/linux/$(TARGET_ARCH)/bits/uClibc_config.h
  76. tags:
  77. ctags -R
  78. clean: subdirs_clean
  79. @rm -rf tmp
  80. rm -f $(STATIC_NAME) crt0.o $(SHARED_NAME) uClibc_config.h
  81. rm -f include/asm include/linux include/bits
  82. subdirs: $(patsubst %, _dir_%, $(DIRS))
  83. subdirs_clean: $(patsubst %, _dirclean_%, $(DIRS) test)
  84. $(patsubst %, _dir_%, $(DIRS)) : dummy
  85. $(MAKE) -C $(patsubst _dir_%, %, $@)
  86. $(patsubst %, _dirclean_%, $(DIRS) test) : dummy
  87. $(MAKE) -C $(patsubst _dirclean_%, %, $@) clean
  88. install:
  89. @if [ `id -u` -ne 0 ]; then \
  90. echo "Aborting install -- You must be root."; \
  91. /bin/false; \
  92. fi;
  93. @if [ -n "$(DO_SHARED)" ] ; then \
  94. set -x; \
  95. mv -f $(INSTALL_DIR)/lib/$(SHARED_NAME) \
  96. $(INSTALL_DIR)/lib/$(SHARED_NAME).old > /dev/null 2>&1; \
  97. rm -f $(INSTALL_DIR)/lib/$(SHARED_NAME).old; \
  98. cp $(SHARED_NAME) $(INSTALL_DIR)/lib; \
  99. chmod 644 $(INSTALL_DIR)/lib/$(SHARED_NAME); \
  100. chown -R root.root $(INSTALL_DIR)/lib/$(SHARED_NAME); \
  101. rm -f $(INSTALL_DIR)/lib/libuClibc.so; \
  102. ln -s $(INSTALL_DIR)/lib/$(SHARED_NAME) \
  103. $(INSTALL_DIR)/lib/libuClibc.so; \
  104. /sbin/ldconfig; \
  105. fi;
  106. @if [ "$(HAS_MMU)" = "false" ] ; then \
  107. set -x; \
  108. rm -f $(INSTALL_DIR)/include/asm; \
  109. rm -f $(INSTALL_DIR)/include/linux; \
  110. mkdir -p $(INSTALL_DIR)/include/bits; \
  111. ln -s $(KERNEL_SOURCE)/include/asm $(INSTALL_DIR)/include/asm; \
  112. ln -s $(KERNEL_SOURCE)/include/linux $(INSTALL_DIR)/include/linux; \
  113. find include/ -type f -depth -print | cpio -pdmu $(INSTALL_DIR); \
  114. find include/bits/ -depth -print | cpio -pdmu $(INSTALL_DIR); \
  115. rm -f $(INSTALL_DIR)/lib/$(STATIC_NAME); \
  116. cp $(STATIC_NAME) $(INSTALL_DIR)/lib; \
  117. chmod 644 $(INSTALL_DIR)/lib/$(STATIC_NAME); \
  118. chown -R root.root $(INSTALL_DIR)/lib/$(STATIC_NAME); \
  119. if [ -f crt0.o ] ; then \
  120. rm -f $(INSTALL_DIR)/lib/crt0.o; \
  121. cp crt0.o $(INSTALL_DIR)/lib ; \
  122. chmod 644 $(INSTALL_DIR)/lib/crt0.o; \
  123. chown -R root.root $(INSTALL_DIR)/lib/crt0.o; \
  124. fi; \
  125. chmod -R 775 `find $(INSTALL_DIR)/include -type d`; \
  126. chmod -R 644 `find $(INSTALL_DIR)/include -type f`; \
  127. chown -R root.root $(INSTALL_DIR)/include; \
  128. fi;
  129. uClibc_config.h: Config
  130. @echo "/* WARNING!!! AUTO-GENERATED FILE!!! DO NOT EDIT!!! */" > uClibc_config.h
  131. @echo "#if !defined __FEATURES_H && !defined __need_uClibc_config_h" >> uClibc_config.h
  132. @echo "#error Never include <bits/uClibc_config.h> directly; use <features.h> instead." >> uClibc_config.h
  133. @echo "#endif" >> uClibc_config.h
  134. @echo "#define linux 1" >> uClibc_config.h
  135. @echo "#define __linux_ 1" >> uClibc_config.h
  136. @if [ "$(HAS_MMU)" = "true" ] ; then \
  137. echo "#define __UCLIBC_HAS_MMU__ 1" >> uClibc_config.h ; \
  138. else \
  139. echo "#undef __UCLIBC_HAS_MMU__" >> uClibc_config.h ; \
  140. fi
  141. @if [ "$(HAS_FLOATS)" = "true" ] ; then \
  142. echo "#define __UCLIBC_HAS_FLOATS__ 1" >> uClibc_config.h ; \
  143. else \
  144. echo "#undef __UCLIBC_HAS_FLOATS__" >> uClibc_config.h ; \
  145. fi
  146. @if [ "$(HAS_LONG_LONG)" = "true" ] ; then \
  147. echo "#define __UCLIBC_HAS_LONG_LONG__ 1" >> uClibc_config.h ; \
  148. else \
  149. echo "#undef __UCLIBC_HAS_LONG_LONG__" >> uClibc_config.h ; \
  150. fi
  151. @if [ "$(HAS_LOCALE)" = "true" ] ; then \
  152. echo "#define __UCLIBC_HAS_LOCALE__ 1" >> uClibc_config.h ; \
  153. echo "#define __UCLIBC_LOCALE_DIR \""$(LOCALE_DIR)"\"" >> uClibc_config.h ; \
  154. else \
  155. echo "#undef __UCLIBC_HAS_LOCALE__" >> uClibc_config.h ; \
  156. fi
  157. @if [ "$(TARGET_ARCH)" = "m68k" ] ; then \
  158. echo "#define __VFORK_MACRO__ 1" >> uClibc_config.h ; \
  159. if [ `expr match "$(CC)" ".*\(m68k-elf-.*\)"`x = x ]; then \
  160. echo "#define const" >> uClibc_config.h ; \
  161. echo "#define __const" >> uClibc_config.h ; \
  162. echo "#define __extension" >> uClibc_config.h ; \
  163. fi; \
  164. else \
  165. echo "#undef __VFORK_MACRO__" >> uClibc_config.h ; \
  166. fi
  167. @if [ "$(TARGET_ARCH)" = "sh" ] ; then \
  168. echo "#define NO_UNDERSCORES 1" >> uClibc_config.h ; \
  169. else \
  170. echo "#undef NO_UNDERSCORES" >> uClibc_config.h ; \
  171. fi
  172. .PHONY: dummy