| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 | # Makefile for uClibc## Copyright (C) 2000-2005 Erik Andersen <andersen@uclibc.org>## Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.#top_builddir=../include Rules.makALL_SUBDIRS := $(patsubst %/Makefile,%,$(wildcard */Makefile))DIRS := $(ALL_SUBDIRS)ifneq ($(HAVE_SHARED)$(UCLIBC_HAS_THREADS),yy)	DIRS := $(filter-out dlopen,$(DIRS))endififneq ($(findstring -static,$(LDFLAGS)),)	DIRS := $(filter-out dlopen,$(DIRS))endififneq ($(UCLIBC_HAS_THREADS),y)	DIRS := $(filter-out pthread,$(DIRS))endififneq ($(UCLIBC_HAS_FULL_RPC),y)	DIRS := $(filter-out rpc,$(DIRS))endififneq ($(UCLIBC_HAS_REGEX),y)	DIRS := $(filter-out regex,$(DIRS))endififneq ($(UCLIBC_HAS_WCHAR),y)	DIRS := $(filter-out locale-mbwc,$(DIRS))endififneq ($(UCLIBC_HAS_LOCALE),y)	DIRS := $(filter-out locale,$(DIRS))endififeq ($(UCLIBC_HAS_CRYPT_STUB),y)	DIRS := $(filter-out crypt,$(DIRS))endififeq ($(HAS_NO_THREADS),y)	DIRS := $(filter-out pthread,$(DIRS))endifDIRS := $(filter-out math,$(DIRS))test check all: runrun: subdirs_runcompile: subdirs_compiletags:	ctags -Rclean: subdirs_cleansubdirs: $(patsubst %, _dir_%, $(DIRS))subdirs_compile: $(patsubst %, _dircompile_%, $(DIRS))subdirs_run: $(patsubst %, _dirrun_%, $(DIRS))subdirs_clean: $(patsubst %, _dirclean_%, $(ALL_SUBDIRS))$(patsubst %, _dir_%, $(DIRS)) : dummy	$(Q)$(MAKE) -C $(patsubst _dir_%, %, $@)$(patsubst %, _dirrun_%, $(DIRS)) : dummy	$(Q)$(MAKE) -C $(patsubst _dirrun_%, %, $@) run$(patsubst %, _dircompile_%, $(DIRS)) : dummy	$(Q)$(MAKE) -C $(patsubst _dircompile_%, %, $@) compile$(patsubst %, _dirclean_%, $(ALL_SUBDIRS)) : dummy	$(Q)$(MAKE) -C $(patsubst _dirclean_%, %, $@) clean.PHONY: all check clean dummy subdirs_compile subdirs_run subdirs subdirs_clean test run compile
 |