From 6a986cd382b94d27cfcd988dc457e73f9f43bf1f Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Thu, 30 Jun 2005 23:45:45 +0000 Subject: fix ALL_SUBDIRS/DIRS setting so clean always kills everything --- test/Makefile | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'test') 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 -- cgit v1.2.3