Makefile 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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. DIRS := $(filter-out math,$(DIRS))
  27. test check all: run
  28. run: compile subdirs_run
  29. compile:subdirs_compile
  30. tags:
  31. ctags -R
  32. clean: subdirs_clean
  33. subdirs: $(patsubst %, _dir_%, $(DIRS))
  34. subdirs_compile: $(patsubst %, _dircompile_%, $(DIRS))
  35. subdirs_run: $(patsubst %, _dirrun_%, $(DIRS))
  36. subdirs_clean: $(patsubst %, _dirclean_%, $(ALL_SUBDIRS))
  37. $(patsubst %, _dir_%, $(DIRS)) : dummy
  38. $(Q)$(MAKE) -C $(patsubst _dir_%, %, $@)
  39. $(patsubst %, _dirrun_%, $(DIRS)) : dummy
  40. $(Q)$(MAKE) -C $(patsubst _dirrun_%, %, $@) run
  41. $(patsubst %, _dircompile_%, $(DIRS)) : dummy
  42. $(Q)$(MAKE) -C $(patsubst _dircompile_%, %, $@) compile
  43. $(patsubst %, _dirclean_%, $(ALL_SUBDIRS)) : dummy
  44. $(Q)$(MAKE) -C $(patsubst _dirclean_%, %, $@) clean
  45. .PHONY: all check clean dummy subdirs_compile subdirs_run subdirs subdirs_clean test run compile