Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
@echo off
rem
rem Makes all Borland for OS/2 Synchronet projects - April 1997 Rob Swindell
rem
cd sbbs
make %1 %2 %3 %4 %5
if errorlevel 1 goto err
cd scfg
make %1 %2 %3 %4 %5
if errorlevel 1 goto err
cd ..\addfiles
make -fmakefile.bc %1 %2 %3 %4 %5
if errorlevel 1 goto err
cd ..\baja
call make.cmd %1 %2 %3 %4 %5
if errorlevel 1 goto err
cd ..\delfiles
make -fmakefile.bc %1 %2 %3 %4 %5
if errorlevel 1 goto err
cd ..\dupefind
make -fmakefile.bc %1 %2 %3 %4 %5
if errorlevel 1 goto err
cd ..\echo
make %1 %2 %3 %4 %5
if errorlevel 1 goto err
cd ..\execsbbs
call make.cmd %1 %2 %3 %4 %5
if errorlevel 1 goto err
cd ..\filelist
make -fmakefile.bc %1 %2 %3 %4 %5
if errorlevel 1 goto err
cd ..\install
make %1 %2 %3 %4 %5
if errorlevel 1 goto err
cd ..\node
call make.cmd %1 %2 %3 %4 %5
if errorlevel 1 goto err
cd ..\slog
call make.cmd %1 %2 %3 %4 %5
if errorlevel 1 goto err
cd ..\smb
cd chksmb
make %1 %2 %3 %4 %5
if errorlevel 1 goto err
cd ..\fixsmb
make %1 %2 %3 %4 %5
if errorlevel 1 goto err
cd ..\smbutil
make -fmakefile.bc %1 %2 %3 %4 %5
if errorlevel 1 goto err
cd ..
cd ..\smbactiv
make -fmakefile.bc %1 %2 %3 %4 %5
if errorlevel 1 goto err
rem End of makes
cd ..\..
goto end
:err
rem Error occurred
echo.
echo There was an error!
echo.
:end