summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorNoriko Hosoi <nhosoi@redhat.com>2005-01-24 21:46:07 +0000
committerNoriko Hosoi <nhosoi@redhat.com>2005-01-24 21:46:07 +0000
commit9c26d438cf54749a9803ca8d9305e4a085dd2f75 (patch)
treefc4d9d0a9260de3e7775de70211985aa3bae990a /Makefile
parent352aa5cfd505d1651a80cf45039ce3511c98ac57 (diff)
downloadds-9c26d438cf54749a9803ca8d9305e4a085dd2f75.tar.gz
ds-9c26d438cf54749a9803ca8d9305e4a085dd2f75.tar.xz
ds-9c26d438cf54749a9803ca8d9305e4a085dd2f75.zip
target name should not be identical to the directory name if you want to always execute the command line.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 210a69eb..d4e031be 100644
--- a/Makefile
+++ b/Makefile
@@ -214,9 +214,9 @@ endif
buildDirectoryClients: $(ANT_DEP) java_platform_check
ifeq ($(BUILD_JAVA_CODE),1)
- cd ldap/clients; $(MAKE) $(MFLAGS) dsmlgw
+ cd ldap/clients; $(MAKE) _dsmlgw
endif
- cd ldap/clients; $(MAKE) $(MFLAGS) dsgw
+ cd ldap/clients; $(MAKE) _dsgw
$(OBJDIR):
if test ! -d $(OBJDIR); then mkdir -p $(OBJDIR); fi;