Makefile 6.8 KB

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