diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-06-30 23:45:45 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-06-30 23:45:45 +0000 |
commit | 6a986cd382b94d27cfcd988dc457e73f9f43bf1f (patch) | |
tree | de8393ca0462e19e61b9a10e1ec9837bcde0022c /test/Makefile | |
parent | 45cba8b94282e00a7ea32e7976d11e3161cb0d1c (diff) |
fix ALL_SUBDIRS/DIRS setting so clean always kills everything
Diffstat (limited to 'test/Makefile')
-rw-r--r-- | test/Makefile | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/test/Makefile b/test/Makefile index a2878020e..a4cab040b 100644 --- a/test/Makefile +++ b/test/Makefile @@ -21,19 +21,20 @@ TOPDIR=../ .EXPORT_ALL_VARIABLES: + ALL_SUBDIRS = \ args assert crypt ctype pwd_grp signal silly stdlib string unistd \ #misc -DIRS = $(ALL_SUBDIRS) +DIRS := $(ALL_SUBDIRS) -ifeq ($(HAVE_SHARED),y) - ifeq ($(BUILD_UCLIBC_LDSO),y) - DIRS += dlopen - endif +ifeq ($(HAVE_SHARED)$(BUILD_UCLIBC_LDSO),yy) + DIRS += dlopen endif ifeq ($(UCLIBC_HAS_THREADS),y) DIRS += pthread endif +ALL_SUBDIRS += pthread dlopen + all: subdirs |