Makefile 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458
  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 = extra 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 subdirs shared utils 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 ] || mkdir -p $(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 -rf include/bits
  107. mkdir -p include/bits
  108. @./extra/config/conf -o extra/Configs/Config.$(TARGET_ARCH)
  109. headers: include/bits/uClibc_config.h
  110. ifeq ($(strip $(UCLIBC_HAS_MMU)),y)
  111. @./extra/scripts/fix_includes.sh -k $(KERNEL_SOURCE) -t $(TARGET_ARCH)
  112. else
  113. @./extra/scripts/fix_includes.sh -k $(KERNEL_SOURCE) -t $(TARGET_ARCH) -n
  114. endif
  115. @if [ "$(TARGET_ARCH)" = "mipsel" ]; then \
  116. (cd libc/sysdeps/linux; \
  117. ln -fs mips mipsel); \
  118. (cd ldso/ldso; \
  119. ln -fs mips mipsel); \
  120. (cd libpthread/linuxthreads/sysdeps; \
  121. ln -fs mips mipsel); \
  122. fi;
  123. @cd include/bits; \
  124. set -e; \
  125. for i in `ls ../../libc/sysdeps/linux/common/bits/*.h` ; do \
  126. ln -fs $$i .; \
  127. done; \
  128. if [ -d ../../libc/sysdeps/linux/$(TARGET_ARCH)/bits ] ; then \
  129. for i in `ls ../../libc/sysdeps/linux/$(TARGET_ARCH)/bits/*.h` ; do \
  130. ln -fs $$i .; \
  131. done; \
  132. fi
  133. @cd include/sys; \
  134. set -e; \
  135. for i in `ls ../../libc/sysdeps/linux/common/sys/*.h` ; do \
  136. ln -fs $$i .; \
  137. done; \
  138. if [ -d ../../libc/sysdeps/linux/$(TARGET_ARCH)/sys ] ; then \
  139. for i in `ls ../../libc/sysdeps/linux/$(TARGET_ARCH)/sys/*.h` ; do \
  140. ln -fs $$i .; \
  141. done; \
  142. fi
  143. @cd $(TOPDIR); \
  144. set -x -e; \
  145. TOPDIR=. CC="$(CC)" /bin/sh extra/scripts/gen_bits_syscall_h.sh > include/bits/sysnum.h.new; \
  146. if cmp include/bits/sysnum.h include/bits/sysnum.h.new >/dev/null 2>&1; then \
  147. $(RM) include/bits/sysnum.h.new; \
  148. else \
  149. mv -f include/bits/sysnum.h.new include/bits/sysnum.h; \
  150. fi
  151. $(MAKE) -C libc/sysdeps/linux/$(TARGET_ARCH) headers
  152. subdirs: $(patsubst %, _dir_%, $(DIRS))
  153. $(patsubst %, _dir_%, $(DIRS)) : dummy
  154. $(MAKE) -C $(patsubst _dir_%, %, $@)
  155. tags:
  156. ctags -R
  157. install: install_dev install_runtime install_toolchain install_utils finished2
  158. # Installs header files and development library links.
  159. install_dev:
  160. install -d $(PREFIX)$(DEVEL_PREFIX)/lib
  161. install -d $(PREFIX)$(DEVEL_PREFIX)/usr/lib
  162. install -d $(PREFIX)$(DEVEL_PREFIX)/include
  163. -install -m 644 lib/*.[ao] $(PREFIX)$(DEVEL_PREFIX)/lib/
  164. tar -chf - include | tar -xf - -C $(PREFIX)$(DEVEL_PREFIX);
  165. ifneq ($(strip $(UCLIBC_HAS_FLOATS)),y)
  166. # Remove floating point related headers since float support is disabled.
  167. rm $(PREFIX)$(DEVEL_PREFIX)/include/complex.h
  168. rm $(PREFIX)$(DEVEL_PREFIX)/include/fpu_control.h
  169. rm $(PREFIX)$(DEVEL_PREFIX)/include/ieee754.h
  170. rm $(PREFIX)$(DEVEL_PREFIX)/include/math.h
  171. rm $(PREFIX)$(DEVEL_PREFIX)/include/tgmath.h
  172. endif
  173. ifneq ($(strip $(UCLIBC_HAS_WCHAR)),y)
  174. # Remove wide char headers since wide char support is disabled.
  175. rm $(PREFIX)$(DEVEL_PREFIX)/include/wctype.h
  176. rm $(PREFIX)$(DEVEL_PREFIX)/include/wchar.h
  177. endif
  178. ifneq ($(strip $(UCLIBC_HAS_LOCALE)),y)
  179. # Remove iconv header since locale support is disabled.
  180. rm $(PREFIX)$(DEVEL_PREFIX)/include/iconv.h
  181. endif
  182. ifneq ($(strip $(UCLIBC_HAS_GLIBC_CUSTOM_PRINTF)),y)
  183. # Remove printf header since custom print specifier support is disabled.
  184. rm $(PREFIX)$(DEVEL_PREFIX)/include/printf.h
  185. endif
  186. ifneq ($(strip $(UCLIBC_HAS_XLOCALE)),y)
  187. # Remove xlocale header since extended locale support is disabled.
  188. rm $(PREFIX)$(DEVEL_PREFIX)/include/xlocale.h
  189. endif
  190. ifneq ($(strip $(UCLIBC_HAS_GETTEXT_AWARENESS)),y)
  191. # Remove libintl header since gettext support is disabled.
  192. rm $(PREFIX)$(DEVEL_PREFIX)/include/libintl.h
  193. endif
  194. ifneq ($(strip $(UCLIBC_HAS_REGEX)),y)
  195. # Remove regex headers since regex support is disabled.
  196. rm $(PREFIX)$(DEVEL_PREFIX)/include/regex.h
  197. rm $(PREFIX)$(DEVEL_PREFIX)/include/regexp.h
  198. endif
  199. ifneq ($(strip $(UCLIBC_HAS_WORDEXP)),y)
  200. # Remove wordexp header since wordexp support is disabled.
  201. rm $(PREFIX)$(DEVEL_PREFIX)/include/wordexp.h
  202. endif
  203. ifneq ($(strip $(UCLIBC_HAS_FTW)),y)
  204. # Remove ftw header since ftw support is disabled.
  205. rm $(PREFIX)$(DEVEL_PREFIX)/include/ftw.h
  206. endif
  207. ifneq ($(strip $(UCLIBC_HAS_GLOB)),y)
  208. # Remove glob header since glob support is disabled.
  209. rm $(PREFIX)$(DEVEL_PREFIX)/include/glob.h
  210. endif
  211. -@for i in `find $(PREFIX)$(DEVEL_PREFIX) -type d` ; do \
  212. chmod -f 755 $$i; chmod -f 644 $$i/*.h; \
  213. done;
  214. -find $(PREFIX)$(DEVEL_PREFIX) -name CVS | xargs rm -rf;
  215. -chown -R `id | sed 's/^uid=\([0-9]*\).*gid=\([0-9]*\).*$$/\1.\2/'` $(PREFIX)$(DEVEL_PREFIX)
  216. ifeq ($(strip $(HAVE_SHARED)),y)
  217. -install -m 644 lib/*.so $(PREFIX)$(DEVEL_PREFIX)/lib/
  218. -find lib/ -type l -name '*.so' -exec cp -fa {} $(PREFIX)$(DEVEL_PREFIX)/lib ';'
  219. # If we build shared libraries then the static libs are PIC...
  220. # Make _pic.a symlinks to make mklibs.py and similar tools happy.
  221. for i in `find lib/ -type f -name '*.a' | sed -e 's/lib\///'` ; do \
  222. ln -sf $$i $(PREFIX)$(DEVEL_PREFIX)/lib/`echo $$i | sed -e 's/\.a$$/_pic.a/'`; \
  223. done
  224. endif
  225. # Installs run-time libraries and helper apps onto the host system
  226. # allowing cross development. If you want to deploy to a target
  227. # system, use the "install_target" target instead...
  228. install_runtime:
  229. ifeq ($(strip $(HAVE_SHARED)),y)
  230. install -d $(PREFIX)$(DEVEL_PREFIX)/lib
  231. install -d $(PREFIX)$(DEVEL_PREFIX)/bin
  232. install -m 644 lib/lib*-$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL).so \
  233. $(PREFIX)$(DEVEL_PREFIX)/lib
  234. cp -fa lib/*.so.* $(PREFIX)$(DEVEL_PREFIX)/lib
  235. @if [ -x lib/ld-uClibc-$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL).so ] ; then \
  236. set -x -e; \
  237. install -m 755 lib/ld-uClibc-$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL).so \
  238. $(PREFIX)$(DEVEL_PREFIX)/lib; \
  239. fi;
  240. #@if [ -x lib/ld-uClibc-$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL).so ] ; then \
  241. # install -d $(PREFIX)$(SHARED_LIB_LOADER_PATH); \
  242. # ln -sf $(PREFIX)$(DEVEL_PREFIX)/lib/ld-uClibc-$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL).so \
  243. # $(PREFIX)$(SHARED_LIB_LOADER_PATH)/$(UCLIBC_LDSO); \
  244. #fi;
  245. endif
  246. install_toolchain:
  247. install -d $(PREFIX)$(DEVEL_PREFIX)/lib
  248. install -d $(PREFIX)$(DEVEL_PREFIX)/bin
  249. install -d $(PREFIX)$(DEVEL_TOOL_PREFIX)/bin
  250. install -d $(PREFIX)$(SYSTEM_DEVEL_PREFIX)/bin
  251. $(MAKE) -C extra/gcc-uClibc install
  252. ifeq ($(strip $(HAVE_SHARED)),y)
  253. utils: $(TOPDIR)ldso/util/ldd
  254. $(MAKE) -C ldso utils
  255. else
  256. utils: dummy
  257. endif
  258. install_utils: utils
  259. ifeq ($(strip $(HAVE_SHARED)),y)
  260. install -d $(PREFIX)$(DEVEL_TOOL_PREFIX)/bin;
  261. install -m 755 ldso/util/ldd \
  262. $(PREFIX)$(SYSTEM_DEVEL_PREFIX)/bin/$(TARGET_ARCH)-uclibc-ldd
  263. ln -fs $(SYSTEM_DEVEL_PREFIX)/bin/$(TARGET_ARCH)-uclibc-ldd \
  264. $(PREFIX)$(DEVEL_TOOL_PREFIX)/bin/ldd
  265. # For now, don't bother with readelf since surely the host
  266. # system has binutils, or we couldn't have gotten this far...
  267. #install -m 755 ldso/util/readelf \
  268. # $(PREFIX)$(SYSTEM_DEVEL_PREFIX)/bin/$(TARGET_ARCH)-uclibc-readelf
  269. #ln -fs $(SYSTEM_DEVEL_PREFIX)/bin/$(TARGET_ARCH)-uclibc-readelf \
  270. # $(PREFIX)$(DEVEL_TOOL_PREFIX)/bin/readelf
  271. @if [ -x ldso/util/ldconfig ] ; then \
  272. set -x -e; \
  273. install -d $(PREFIX)$(DEVEL_PREFIX)/etc; \
  274. install -m 755 ldso/util/ldconfig \
  275. $(PREFIX)$(SYSTEM_DEVEL_PREFIX)/bin/$(TARGET_ARCH)-uclibc-ldconfig; \
  276. ln -fs $(SYSTEM_DEVEL_PREFIX)/bin/$(TARGET_ARCH)-uclibc-ldconfig \
  277. $(PREFIX)$(DEVEL_TOOL_PREFIX)/bin/ldconfig; \
  278. fi;
  279. endif
  280. # Installs run-time libraries and helper apps in preparation for
  281. # deploying onto a target system, but installed below wherever
  282. # $PREFIX is set to, allowing you to package up the result for
  283. # deployment onto your target system.
  284. install_target:
  285. ifeq ($(strip $(HAVE_SHARED)),y)
  286. install -d $(PREFIX)$(TARGET_PREFIX)/lib
  287. install -d $(PREFIX)$(TARGET_PREFIX)/usr/bin
  288. install -m 644 lib/lib*-$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL).so \
  289. $(PREFIX)$(TARGET_PREFIX)/lib
  290. cp -fa lib/*.so.* $(PREFIX)$(TARGET_PREFIX)/lib
  291. @if [ -x lib/ld-uClibc-$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL).so ] ; then \
  292. set -x -e; \
  293. install -m 755 lib/ld-uClibc-$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL).so \
  294. $(PREFIX)$(TARGET_PREFIX)/lib; \
  295. fi;
  296. #@if [ -x lib/ld-uClibc-$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL).so ] ; then \
  297. # install -d $(PREFIX)$(SHARED_LIB_LOADER_PATH); \
  298. # ln -sf $(PREFIX)$(TARGET_PREFIX)/lib/ld-uClibc-$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL).so \
  299. # $(PREFIX)$(SHARED_LIB_LOADER_PATH)/$(UCLIBC_LDSO); \
  300. #fi;
  301. endif
  302. install_target_utils:
  303. ifeq ($(strip $(HAVE_SHARED)),y)
  304. @$(MAKE) -C ldso/util ldd.target readelf.target #ldconfig.target
  305. install -d $(PREFIX)$(TARGET_PREFIX)/usr/bin;
  306. install -m 755 ldso/util/ldd.target $(PREFIX)$(TARGET_PREFIX)/usr/bin/ldd
  307. install -m 755 ldso/util/readelf.target $(PREFIX)$(TARGET_PREFIX)/usr/bin/readelf
  308. @if [ -x ldso/util/ldconfig.target ] ; then \
  309. set -x -e; \
  310. install -d $(PREFIX)$(TARGET_PREFIX)/etc; \
  311. install -d $(PREFIX)$(TARGET_PREFIX)/sbin; \
  312. install -m 755 ldso/util/ldconfig.target $(PREFIX)$(TARGET_PREFIX)/sbin/ldconfig; \
  313. fi;
  314. endif
  315. ifeq ($(strip $(UCLIBC_HAS_LOCALE)),y)
  316. @$(MAKE) -C libc/misc/wchar iconv.target
  317. install -d $(PREFIX)$(TARGET_PREFIX)/usr/bin;
  318. install -m 755 libc/misc/wchar/iconv.target $(PREFIX)$(TARGET_PREFIX)/usr/bin/iconv
  319. endif
  320. finished2:
  321. @echo
  322. @echo Finished installing...
  323. @echo
  324. else # ifeq ($(strip $(HAVE_DOT_CONFIG)),y)
  325. all: menuconfig
  326. # configuration
  327. # ---------------------------------------------------------------------------
  328. extra/config/conf:
  329. make -C extra/config conf
  330. -@if [ ! -f .config ] ; then \
  331. cp extra/Configs/Config.$(TARGET_ARCH).default .config; \
  332. fi
  333. extra/config/mconf:
  334. make -C extra/config ncurses conf mconf
  335. -@if [ ! -f .config ] ; then \
  336. cp extra/Configs/Config.$(TARGET_ARCH).default .config; \
  337. fi
  338. menuconfig: extra/config/mconf
  339. rm -rf include/bits
  340. mkdir -p include/bits
  341. @./extra/config/mconf extra/Configs/Config.$(TARGET_ARCH)
  342. config: extra/config/conf
  343. rm -rf include/bits
  344. mkdir -p include/bits
  345. @./extra/config/conf extra/Configs/Config.$(TARGET_ARCH)
  346. oldconfig: extra/config/conf
  347. rm -rf include/bits
  348. mkdir -p include/bits
  349. @./extra/config/conf -o extra/Configs/Config.$(TARGET_ARCH)
  350. randconfig: extra/config/conf
  351. rm -rf include/bits
  352. mkdir -p include/bits
  353. @./extra/config/conf -r extra/Configs/Config.$(TARGET_ARCH)
  354. allyesconfig: extra/config/conf
  355. rm -rf include/bits
  356. mkdir -p include/bits
  357. @./extra/config/conf -y extra/Configs/Config.$(TARGET_ARCH)
  358. allnoconfig: extra/config/conf
  359. rm -rf include/bits
  360. mkdir -p include/bits
  361. @./extra/config/conf -n extra/Configs/Config.$(TARGET_ARCH)
  362. defconfig: extra/config/conf
  363. rm -rf include/bits
  364. mkdir -p include/bits
  365. @./extra/config/conf -d extra/Configs/Config.$(TARGET_ARCH)
  366. clean:
  367. - find . \( -name \*.o -o -name \*.a -o -name \*.so -o -name core -o -name .\#\* \) -exec rm -f {} \;
  368. @rm -rf tmp lib include/bits libc/tmp _install
  369. $(MAKE) -C test clean
  370. $(MAKE) -C ldso clean
  371. $(MAKE) -C libc/misc/internals clean
  372. $(MAKE) -C libc/misc/wchar clean
  373. $(MAKE) -C libc/unistd clean
  374. $(MAKE) -C libc/sysdeps/linux/common clean
  375. $(MAKE) -C extra/gcc-uClibc clean
  376. $(MAKE) -C extra/locale clean
  377. @set -e; \
  378. for i in `(cd $(TOPDIR)/libc/sysdeps/linux/common/sys; ls *.h)` ; do \
  379. rm -f include/sys/$$i; \
  380. done; \
  381. if [ -d libc/sysdeps/linux/$(TARGET_ARCH)/sys ] ; then \
  382. for i in `(cd libc/sysdeps/linux/$(TARGET_ARCH)/sys; ls *.h)` ; do \
  383. rm -f include/sys/$$i; \
  384. done; \
  385. fi;
  386. @rm -f include/linux include/scsi include/asm
  387. @if [ -d libc/sysdeps/linux/$(TARGET_ARCH) ]; then \
  388. $(MAKE) -C libc/sysdeps/linux/$(TARGET_ARCH) clean; \
  389. fi;
  390. @if [ "$(TARGET_ARCH)" = "mipsel" ]; then \
  391. $(MAKE) -C libc/sysdeps/linux/mips clean; \
  392. rm -f ldso/ldso/mipsel; \
  393. rm -f libc/sysdeps/linux/mipsel; \
  394. rm -f libpthread/linuxthreads/sysdeps/mipsel; \
  395. fi;
  396. distclean: clean
  397. rm -f .config .config.old .config.cmd
  398. $(MAKE) -C extra clean
  399. release: distclean
  400. cd ..; \
  401. rm -rf uClibc-$(VERSION); \
  402. cp -fa uClibc uClibc-$(VERSION); \
  403. find uClibc-$(VERSION)/ -type f \
  404. -name .\#* -exec rm -rf {} \; ; \
  405. find uClibc-$(VERSION)/ -type d \
  406. -name CVS -exec rm -rf {} \; ; \
  407. \
  408. tar -cvzf uClibc-$(VERSION).tar.gz uClibc-$(VERSION)/;
  409. endif # ifeq ($(strip $(HAVE_DOT_CONFIG)),y)
  410. .PHONY: dummy subdirs release distclean clean config oldconfig menuconfig