Replace a "cp" with three "xcopy"s.

svn path=/trunk/; revision=12946
This commit is contained in:
Gerald Combs 2005-01-04 17:25:38 +00:00
parent 65e839d380
commit 21e89ed1a4
1 changed files with 3 additions and 1 deletions

View File

@ -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 ..