summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/Make_cyg.mak6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/Make_cyg.mak b/src/Make_cyg.mak
index 0ea3fa499f..4687ef1d3d 100644
--- a/src/Make_cyg.mak
+++ b/src/Make_cyg.mak
@@ -1,6 +1,6 @@
#
# Makefile for VIM on Win32, using Cygnus gcc
-# Last updated by Dan Sharp. Last Change: 2005 Jan 08
+# Last updated by Dan Sharp. Last Change: 2005 Jan 16
#
# This compiles Vim as a Windows application. If you want Vim to run as a
# Cygwin application use the Makefile (just like on Unix).
@@ -337,9 +337,11 @@ endif
##############################
ifneq (sh.exe, $(SHELL))
DEL = rm
+MKDIR = mkdir -p
DIRSLASH = /
else
DEL = del
+MKDIR = mkdir
DIRSLASH = \\
endif
@@ -422,7 +424,7 @@ uninstal.exe: uninstal.c
$(CC) $(CFLAGS) -o uninstal.exe uninstal.c $(LIBS)
$(OUTDIR):
- mkdir -p $(OUTDIR)
+ $(MKDIR) $(OUTDIR)
tags:
command /c ctags *.c $(INCL)