diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-01-20 00:45:14 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-01-20 00:45:14 +0000 |
commit | 844b89dbfdd41ced4666d2bb99ce0bf99503524b (patch) | |
tree | 170a400307e11f2a310e290f782b279bbe45e7be /test/Makefile | |
parent | 66ebed3e54ec469f719a48750df08fd642b2abfe (diff) |
Reworked all test suite makefiles (man did they need it).
Refactored testsuite.h so it behaves the way I want it to. As policy now,
all test apps are _supposed_ to use testsuite.h (not all have been converted
to do this yet). It is simple, clean, and works.
-Erik
Diffstat (limited to 'test/Makefile')
-rw-r--r-- | test/Makefile | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/test/Makefile b/test/Makefile index 0035b9dea..d842a7232 100644 --- a/test/Makefile +++ b/test/Makefile @@ -20,7 +20,15 @@ # other sundry sources. Files within this library are copyright by their # respective copyright holders. -DIRS = assert ctype pwd_grp signal silly stdlib string +TOPDIR=../ +include $(TOPDIR)Rules.mak + +ifeq ($(TARGET_ARCH), $(NATIVE_ARCH)) + DIRS = assert ctype pwd_grp signal silly stdlib string +else + DIRS = +endif + all: subdirs tags: |