summaryrefslogtreecommitdiff
path: root/test/Makefile
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2001-08-29 00:07:05 +0000
committerEric Andersen <andersen@codepoet.org>2001-08-29 00:07:05 +0000
commitbb632d57bb792804a18bfcbb723c825de26b23a5 (patch)
treefb992e4e4a361c5caa2613e04359586c59c81c2a /test/Makefile
parent0ca318b538527bbead594174b3e9ad0cf051b086 (diff)
Minor update
Diffstat (limited to 'test/Makefile')
-rw-r--r--test/Makefile20
1 files changed, 12 insertions, 8 deletions
diff --git a/test/Makefile b/test/Makefile
index 2cc365e3f..e9a717d5f 100644
--- a/test/Makefile
+++ b/test/Makefile
@@ -21,15 +21,19 @@
# respective copyright holders.
TOPDIR=../
-include $(TOPDIR)Rules.mak
+include $(TOPDIR)Config
+
+.EXPORT_ALL_VARIABLES:
+
ALL_SUBDIRS = args assert ctype pwd_grp signal silly stdlib string unistd #misc
-ifeq ($(TARGET_ARCH), $(NATIVE_ARCH))
- DIRS = $(ALL_SUBDIRS)
-else
- DIRS =
-endif
-ifeq ($(DO_SHARED),shared)
+DIRS = $(ALL_SUBDIRS)
+#ifeq ($(TARGET_ARCH), $(NATIVE_ARCH))
+# DIRS = $(ALL_SUBDIRS)
+#else
+# DIRS =
+#endif
+ifeq ($(strip $(HAVE_SHARED)),true)
DIRS += ldso
endif
@@ -47,7 +51,7 @@ subdirs_clean: $(patsubst %, _dirclean_%, $(ALL_SUBDIRS))
$(patsubst %, _dir_%, $(DIRS)) : dummy
$(MAKE) -C $(patsubst _dir_%, %, $@)
-$(patsubst %, _dirclean_%, $(ALL_SUBDIRS)) : dummy
+$(patsubst %, _dirclean_%, $(ALL_SUBDIRS) ldso) : dummy
$(MAKE) -C $(patsubst _dirclean_%, %, $@) clean
.PHONY: dummy