summaryrefslogtreecommitdiff
path: root/Makefile.nmake
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2005-01-04 17:25:38 +0000
committerGerald Combs <gerald@wireshark.org>2005-01-04 17:25:38 +0000
commit21e89ed1a46fa24580af36a84610fff632f0a32b (patch)
treee38ee2fc11db68967edda50b1aba8f503668e813 /Makefile.nmake
parent65e839d380776f69fd2df9a859854e95ae7b1409 (diff)
downloadwireshark-21e89ed1a46fa24580af36a84610fff632f0a32b.tar.gz
Replace a "cp" with three "xcopy"s.
svn path=/trunk/; revision=12946
Diffstat (limited to 'Makefile.nmake')
-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 ..