diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-06-29 22:58:06 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-06-29 22:58:06 +0000 |
commit | d097452b7f85d3625559ea88939f8a6a4de78309 (patch) | |
tree | 4c3dab67187754ed4a60f4c6718e01c76eaf15c7 /test/Makefile | |
parent | cbe1e9b4852908ee0d7c1419958a70cd616bebe9 (diff) |
touchup syntax
Diffstat (limited to 'test/Makefile')
-rw-r--r-- | test/Makefile | 25 |
1 files changed, 11 insertions, 14 deletions
diff --git a/test/Makefile b/test/Makefile index 203484290..a2878020e 100644 --- a/test/Makefile +++ b/test/Makefile @@ -21,28 +21,25 @@ TOPDIR=../ .EXPORT_ALL_VARIABLES: - -ALL_SUBDIRS = args assert ctype pwd_grp signal silly stdlib string unistd crypt #misc +ALL_SUBDIRS = \ + args assert crypt ctype pwd_grp signal silly stdlib string unistd \ + #misc DIRS = $(ALL_SUBDIRS) -#ifeq ($(TARGET_ARCH), $(HOST_ARCH)) -# DIRS = $(ALL_SUBDIRS) -#else -# DIRS = -#endif + ifeq ($(HAVE_SHARED),y) - ifeq ($(BUILD_UCLIBC_LDSO),y) - DIRS += dlopen - endif -endif + ifeq ($(BUILD_UCLIBC_LDSO),y) + DIRS += dlopen + endif +endif ifeq ($(UCLIBC_HAS_THREADS),y) - DIRS += pthread -endif + DIRS += pthread +endif all: subdirs tags: ctags -R - + clean: subdirs_clean $(RM) *.[oa] *~ core |