diff options
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: |