Makefile 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. # Makefile for uClibc
  2. #
  3. # Copyright (C) 2000-2005 Erik Andersen <andersen@uclibc.org>
  4. #
  5. # Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
  6. #
  7. top_builddir=../
  8. include Rules.mak
  9. ALL_SUBDIRS := $(patsubst %/Makefile,%,$(wildcard */Makefile))
  10. DIRS := $(ALL_SUBDIRS)
  11. ifneq ($(HAVE_SHARED)$(UCLIBC_HAS_THREADS),yy)
  12. DIRS := $(filter-out dlopen,$(DIRS))
  13. endif
  14. ifneq ($(findstring -static,$(LDFLAGS)),)
  15. DIRS := $(filter-out dlopen,$(DIRS))
  16. endif
  17. ifneq ($(UCLIBC_HAS_THREADS),y)
  18. DIRS := $(filter-out pthread,$(DIRS))
  19. endif
  20. ifneq ($(UCLIBC_HAS_FULL_RPC),y)
  21. DIRS := $(filter-out rpc,$(DIRS))
  22. endif
  23. ifneq ($(UCLIBC_HAS_REGEX),y)
  24. DIRS := $(filter-out regex,$(DIRS))
  25. endif
  26. ifneq ($(UCLIBC_HAS_WCHAR),y)
  27. DIRS := $(filter-out locale-mbwc,$(DIRS))
  28. endif
  29. ifneq ($(UCLIBC_HAS_LOCALE),y)
  30. DIRS := $(filter-out locale,$(DIRS))
  31. endif
  32. ifeq ($(UCLIBC_HAS_CRYPT_STUB),y)
  33. DIRS := $(filter-out crypt,$(DIRS))
  34. endif
  35. DIRS := $(filter-out math,$(DIRS))
  36. test check all: run
  37. run: compile subdirs_run
  38. compile:subdirs_compile
  39. tags:
  40. ctags -R
  41. clean: subdirs_clean
  42. subdirs: $(patsubst %, _dir_%, $(DIRS))
  43. subdirs_compile: $(patsubst %, _dircompile_%, $(DIRS))
  44. subdirs_run: $(patsubst %, _dirrun_%, $(DIRS))
  45. subdirs_clean: $(patsubst %, _dirclean_%, $(ALL_SUBDIRS))
  46. $(patsubst %, _dir_%, $(DIRS)) : dummy
  47. $(Q)$(MAKE) -C $(patsubst _dir_%, %, $@)
  48. $(patsubst %, _dirrun_%, $(DIRS)) : dummy
  49. $(Q)$(MAKE) -C $(patsubst _dirrun_%, %, $@) run
  50. $(patsubst %, _dircompile_%, $(DIRS)) : dummy
  51. $(Q)$(MAKE) -C $(patsubst _dircompile_%, %, $@) compile
  52. $(patsubst %, _dirclean_%, $(ALL_SUBDIRS)) : dummy
  53. $(Q)$(MAKE) -C $(patsubst _dirclean_%, %, $@) clean
  54. .PHONY: all check clean dummy subdirs_compile subdirs_run subdirs subdirs_clean test run compile