aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Makefile.nmake4
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile.nmake b/Makefile.nmake
index 7abae95438..3b9e3645ca 100644
--- a/Makefile.nmake
+++ b/Makefile.nmake
@@ -345,7 +345,9 @@ gtk:: help config.h svnversion.h AUTHORS-SHORT doxygen
gtk2:: help config.h svnversion.h AUTHORS-SHORT
if not exist gtk2.tmp mkdir gtk2.tmp
cd gtk
- cp --update --preserve Makefile.* *.c *.h ..\gtk2.tmp
+ xcopy Makefile.* ..\gtk2.tmp /d /y
+ xcopy *.c ..\gtk2.tmp /d /y
+ xcopy *.h ..\gtk2.tmp /d /y
cd ..\gtk2.tmp
$(MAKE) /$(MAKEFLAGS) /f Makefile.nmake GTK_CFLAGS="$(GTK2_CFLAGS)" GTK_LIBS="$(GTK2_LIBS)" libui.lib
cd ..