diff --git a/lib/Makefile.netware b/lib/Makefile.netware index 94d8fc91b702da3fd296f7e935a07a2efc86d3a9..1a4610d85c36acefd3dce9263fde126fb27a45f3 100644 --- a/lib/Makefile.netware +++ b/lib/Makefile.netware @@ -80,6 +80,7 @@ PERL = perl AWK = awk YACC = bison -y CP = cp -afv +MKDIR = mkdir # RM = rm -f # if you want to mark the target as MTSAFE you will need a tool for # generating the xdc data for the linker; here's a minimal tool: @@ -258,11 +259,8 @@ distclean: clean -$(RM) $(TARGET).$(LIBEXT) $(TARGET).nlm -$(RM) certdata.txt ca-bundle.crt -$(INSTDIR): - @mkdir $@ - -$(OBJDIR): - @mkdir $@ +$(OBJDIR) $(INSTDIR): + @$(MKDIR) $@ $(TARGET).$(LIBEXT): $(OBJS) @echo Creating $@ diff --git a/src/Makefile.netware b/src/Makefile.netware index 176d814c0745890df66b44159f2f0a968c598b42..9468ba19b39117d83714aac71b95ea1fa05c428f 100644 --- a/src/Makefile.netware +++ b/src/Makefile.netware @@ -80,6 +80,7 @@ PERL = perl # http://www.gknw.net/development/prgtools/awk-20070501.zip AWK = awk CP = cp -afv +MKDIR = mkdir # RM = rm -f # if you want to mark the target as MTSAFE you will need a tool for # generating the xdc data for the linker; here's a minimal tool: @@ -247,11 +248,8 @@ endif distclean: clean -$(RM) $(TARGET).nlm -$(INSTDIR): - @mkdir $@ - -$(OBJDIR): - @mkdir $@ +$(OBJDIR) $(INSTDIR): + @$(MKDIR) $@ $(TARGET).nlm: $(OBJS) $(OBJX) $(OBJDIR)/$(TARGET).def $(XDCDATA) @echo Linking $@