|
Revision 1769, 1.3 KB
(checked in by chris, 3 years ago)
|
|
Make ClientException? autogen files in the correct directory, thanks Gary!
(refs #3, merges [1675])
|
-
Property svn:eol-style set to
CRLF
|
| Line | |
|---|
| 1 | @echo off |
|---|
| 2 | |
|---|
| 3 | echo quick and dirty to get up and running by generating the required files |
|---|
| 4 | echo using Cygwin and Perl |
|---|
| 5 | |
|---|
| 6 | copy .\infrastructure\BoxPlatform.pm.in .\infrastructure\BoxPlatform.pm |
|---|
| 7 | |
|---|
| 8 | cd .\bin\bbackupquery\ & perl ./../../bin/bbackupquery/makedocumentation.pl.in |
|---|
| 9 | cd ..\..\ |
|---|
| 10 | |
|---|
| 11 | cd .\lib\backupclient & perl ./../../lib/common/makeexception.pl.in BackupStoreException.txt & perl ./../../lib/server/makeprotocol.pl.in Client ./../../bin/bbstored/backupprotocol.txt |
|---|
| 12 | cd ..\..\ |
|---|
| 13 | |
|---|
| 14 | cd .\lib\compress & perl ./../../lib/common/makeexception.pl.in CompressException.txt |
|---|
| 15 | cd ..\..\ |
|---|
| 16 | |
|---|
| 17 | cd .\lib\common & perl ./../../lib/common/makeexception.pl.in CommonException.txt & perl ./../../lib/common/makeexception.pl.in ConversionException.txt |
|---|
| 18 | |
|---|
| 19 | cd ..\..\ |
|---|
| 20 | |
|---|
| 21 | cd .\bin\bbackupd & perl ./../../lib/common/makeexception.pl.in ClientException.txt |
|---|
| 22 | |
|---|
| 23 | cd ..\..\ |
|---|
| 24 | |
|---|
| 25 | cd .\lib\crypto & perl ./../../lib/common/makeexception.pl.in CipherException.txt |
|---|
| 26 | cd ..\..\ |
|---|
| 27 | |
|---|
| 28 | echo server parts - which appears as though some of the clients rely on |
|---|
| 29 | |
|---|
| 30 | cd .\lib\server & perl ./../../lib/common/makeexception.pl.in ServerException.txt & perl ./../../lib/common/makeexception.pl.in ConnectionException.txt |
|---|
| 31 | cd ..\..\ |
|---|
| 32 | |
|---|
| 33 | perl -pe 's/@PERL@/perl/' ./test/bbackupd/testfiles/bbackupd.conf.in > .\test\bbackupd\testfiles\bbackupd.conf |
|---|