~ubuntu-branches/ubuntu/trusty/vice/trusty

« back to all changes in this revision

Viewing changes to src/arch/sdl/win32-watcom/make-watcom-bindist.bat

  • Committer: Package Import Robot
  • Author(s): Laszlo Boszormenyi (GCS)
  • Date: 2013-07-28 20:38:23 UTC
  • mfrom: (1.2.5)
  • mto: This revision was merged to the branch mainline in revision 27.
  • Revision ID: package-import@ubuntu.com-20130728203823-w495rps5wuykespp
Tags: upstream-2.4.dfsg
ImportĀ upstreamĀ versionĀ 2.4.dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
if not exist x64sc.exe goto missingwatcom
7
7
if not exist x128.exe goto missingwatcom
8
8
if not exist xcbm2.exe goto missingwatcom
 
9
if not exist xcbm5x0.exe goto missingwatcom
9
10
if not exist xpet.exe goto missingwatcom
10
11
if not exist xplus4.exe goto missingwatcom
11
12
if not exist xvic.exe goto missingwatcom
 
13
if not exist vsid.exe goto missingwatcom
12
14
if not exist c1541.exe goto missingwatcom
13
15
if not exist cartconv.exe goto missingwatcom
14
16
if not exist petcat.exe goto missingwatcom
15
17
echo generating OPENWATCOM SDL WIN32 binary port distribution
16
18
if exist %VICEDIR% goto removedir
 
19
:makevicedir
17
20
mkdir %VICEDIR%
18
21
copy x64.exe %VICEDIR%
19
22
copy x64dtv.exe %VICEDIR%
23
26
copy xpet.exe %VICEDIR%
24
27
copy xplus4.exe %VICEDIR%
25
28
copy xcbm2.exe %VICEDIR%
 
29
copy xcbm5x0.exe %VICEDIR%
 
30
copy vsid.exe %VICEDIR%
26
31
copy c1541.exe %VICEDIR%
27
32
copy petcat.exe %VICEDIR%
28
33
copy cartconv.exe %VICEDIR%
67
72
copy ..\..\..\..\data\PET\kernal* %VICEDIR%\PET
68
73
copy ..\..\..\..\data\PET\*.vrs %VICEDIR%\PET
69
74
copy ..\..\..\..\data\PET\sdl*.* %VICEDIR%\PET
 
75
copy ..\..\..\..\data\PET\*.bin %VICEDIR%\PET
70
76
mkdir %VICEDIR%\PLUS4
71
77
copy ..\..\..\..\data\PLUS4\3plus1* %VICEDIR%\PLUS4
72
78
copy ..\..\..\..\data\PLUS4\basic %VICEDIR%\PLUS4
102
108
echo executables are missing, please build the project first.
103
109
goto end
104
110
:removedir
105
 
echo %VICEDIR% already exists, please remove %VICEDIR% and run this batch file again.
 
111
echo y | del %VICEDIR%\*.* /S
 
112
rd %VICEDIR% /s /q
 
113
if exist %VICEDIR% goto cannotremovedir
 
114
goto makevicedir
 
115
:cannotremovedir
 
116
echo can't delete the %VICEDIR% directory, please remove %VICEDIR% manually and run this batch file again.
106
117
:end
107
118
pause