aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorGunter Knauf <gk@gknw.de>2008-02-27 01:36:01 +0000
committerGunter Knauf <gk@gknw.de>2008-02-27 01:36:01 +0000
commit7513d29a48cfc7a899688912530a89620b75c93d (patch)
tree94d686927f54fc316c439683b81812a79822a0e4 /lib
parent97a41f3646e118865802b15ca2ebb738baf68216 (diff)
another small change to the makefiles to simplify rules.
Diffstat (limited to 'lib')
-rw-r--r--lib/Makefile.netware8
1 files changed, 3 insertions, 5 deletions
diff --git a/lib/Makefile.netware b/lib/Makefile.netware
index 94d8fc91b..1a4610d85 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 $@