diff options
-rw-r--r-- | test/pwd_grp/Makefile | 18 |
1 files changed, 13 insertions, 5 deletions
diff --git a/test/pwd_grp/Makefile b/test/pwd_grp/Makefile index 4ddb60bd7..8dce73b71 100644 --- a/test/pwd_grp/Makefile +++ b/test/pwd_grp/Makefile @@ -18,12 +18,20 @@ include ../Rules.mak -TARGETS=test_pwd test_pwd_glibc -TARGETS+=test_grp test_grp_glibc -TARGETS+=pwcat pwcat_glibc -TARGETS+=grcat grcat_glibc -TARGETS+=getgroups getgroups_glibc +U_TARGETS := test_pwd test_grp pwcat grcat getgroups +G_TARGETS := $(patsubst %,%_glibc,$(U_TARGETS)) + +TARGETS := +ifeq ($(GLIBC_ONLY),) +TARGETS += $(U_TARGETS) +endif +ifeq ($(UCLIBC_ONLY),) +TARGETS += $(G_TARGETS) +endif + +ifeq ($(GLIBC_ONLY),$(UCLIBC_ONLY)) TARGETS+=test_pwd_diff test_grp_diff pwcat_diff grcat_diff getgroups_diff +endif all: $(TARGETS) |