forked from sharplispers/cormanlisp
-
Notifications
You must be signed in to change notification settings - Fork 1
/
copysources.bat
94 lines (94 loc) · 3.15 KB
/
copysources.bat
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
rem Creating Sources directory and copying all source files into it.
rem
echo Copying source files to Sources
echo off
rmdir /s /q %1
mkdir %1
copy *.bat %1
copy Makefile %1
copy init.lisp %1
copy *.ism %1
copy gencode.exe %1
copy HyperSpec-6-0.tar.gz %1
mkdir %1\clboot
copy clboot\clboot.cpp %1\clboot
copy clboot\clboot.vcproj %1\clboot
copy clboot\Makefile %1\clboot
mkdir %1\clbootapp
copy clbootapp\clbootapp.cpp %1\clbootapp
copy clbootapp\clbootapp.vcproj %1\clbootapp
copy clbootapp\Makefile %1\clbootapp
mkdir %1\clconsole
copy clconsole\clconsole.cpp %1\clconsole
copy clconsole\clconsole.vcproj %1\clconsole
copy clconsole\Makefile %1\clconsole
mkdir %1\clconsoleapp
copy clconsoleapp\clconsoleapp.cpp %1\clconsoleapp
copy clconsoleapp\clconsoleapp.vcproj %1\clconsoleapp
copy clconsoleapp\Makefile %1\clconsoleapp
mkdir %1\dlltemplate
copy dlltemplate\dlltemplate.cpp %1\dlltemplate
copy dlltemplate\dlltemplate.vcproj %1\dlltemplate
copy dlltemplate\dlltemplate.def %1\dlltemplate
copy dlltemplate\Makefile %1\dlltemplate
mkdir %1\license
copy license\*.cpp %1\license
copy license\*.h %1\license
copy license\license.vcproj %1\license
copy license\license.def %1\license
copy license\Makefile %1\license
mkdir %1\CormanLispIDE
copy CormanLispIDE\CormanLisp.vcproj %1\CormanLispIDE
copy CormanLispIDE\CormanLisp.rc %1\CormanLispIDE
copy CormanLispIDE\Makefile %1\CormanLispIDE
copy CormanLispIDE\resource.h %1\CormanLispIDE
mkdir %1\CormanLispIDE\include
copy CormanLispIDE\include\*.* %1\CormanLispIDE\include
mkdir %1\CormanLispIDE\res
copy CormanLispIDE\res\*.* %1\CormanLispIDE\res
mkdir %1\CormanLispIDE\src
copy CormanLispIDE\src\*.* %1\CormanLispIDE\src
mkdir %1\CormanLispServer
copy CormanLispServer\CormanLispServer.def %1\CormanLispServer
copy CormanLispServer\CormanLispServer.vcproj %1\CormanLispServer
copy CormanLispServer\Makefile %1\CormanLispServer
copy CormanLispServer\makestaticlib.bat %1\CormanLispServer
mkdir %1\CormanLispServer\include
copy CormanLispServer\include\*.* %1\CormanLispServer\include
mkdir %1\CormanLispServer\res
copy CormanLispServer\res\*.* %1\CormanLispServer\res
mkdir %1\CormanLispServer\src
copy CormanLispServer\src\*.* %1\CormanLispServer\src
mkdir %1\documentation
copy documentation\*.txt %1\documentation
copy documentation\*.rtf %1\documentation
copy documentation\CormanLisp.pdf %1\documentation
copy documentation\CormanLisp.doc %1\documentation
copy documentation\parse.html %1\documentation
mkdir %1\utilities
xcopy /s utilities\*.* %1\utilities
mkdir %1\examples
xcopy /s examples\*.* %1\examples
mkdir %1\example\gui
copy examples\gui\*.* %1\examples\gui
mkdir %1\include
copy include\*.h %1\include
mkdir %1\Libraries
xcopy /s Libraries\*.* %1\Libraries
mkdir %1\Modules
copy Modules\*.lisp %1\Modules
copy Modules\*.dll %1\Modules
copy Modules\*.txt %1\Modules
mkdir %1\sys
copy sys\*.lisp %1\sys
mkdir %1\test
copy test\*.lisp %1\test
mkdir %1\zlib
copy zlib\*.c %1\zlib
copy zlib\*.h %1\zlib
copy zlib\ChangeLog %1\zlib
copy zlib\Makefile %1\zlib
copy zlib\README %1\zlib
copy zlib\zlib.vcproj %1\zlib
mkdir %1\zlib\doc
copy zlib\doc\*.doc %1\zlib\doc