inline unary ops: fix sc_floor for non-sse4.1
[supercollider.git] / external_libraries / boost_endian / libs / integer / zip-endian.bat
blob47f2b4d92813b4e1c030a8fb2fd40f4b2370141d
1 echo create zip file...
3 if $%1 == $ goto error
5 rmdir /s \temp\%1 2>nul
6 pushd .
7 mkdir \temp\%1
8 cd \temp\%1
9 md doc\html
10 md boost\integer
11 md libs\integer\doc
12 md libs\integer\example
13 md libs\integer\test
14 popd
15 copy ..\..\boost.png \temp\%1
16 copy ..\..\boost\doc\html\minimal.css \temp\%1\doc\html
17 copy ..\..\boost\binary_stream.hpp \temp\%1\boost
18 copy ..\..\boost\integer\endian.hpp \temp\%1\boost\integer
19 copy ..\..\boost\integer\endian_binary_stream.hpp \temp\%1\boost\integer
20 copy ..\..\boost\integer\cover_operators.hpp \temp\%1\boost\integer
21 copy ..\..\libs\integer\doc\endian.html \temp\%1\libs\integer\doc
22 copy ..\..\libs\integer\example\endian_example.cpp \temp\%1\libs\integer\example
23 copy ..\..\libs\integer\example\endian_hello_world.cpp \temp\%1\libs\integer\example
24 copy ..\..\libs\integer\test\endian_test.cpp \temp\%1\libs\integer\test
25 copy ..\..\libs\integer\test\binary_stream_test.cpp \temp\%1\libs\integer\test
26 copy ..\..\libs\integer\test\endian_binary_stream_test.cpp \temp\%1\libs\integer\test
27 copy ..\..\libs\integer\test\endian_in_union_test.cpp \temp\%1\libs\integer\test
28 copy ..\..\libs\integer\test\endian_operations_test.cpp \temp\%1\libs\integer\test
29 copy ..\..\libs\integer\test\scoped_enum_emulation_test.cpp \temp\%1\libs\integer\test
30 copy ..\..\libs\integer\test\Jamfile.* \temp\%1\libs\integer\test
32 pushd \temp
33 zip -r %1.zip %1
34 popd
35 move \temp\%1.zip .
37 goto done
39 :error
40 echo usage: zip-endian version
41 echo   version will be used for both the .zip name and the highest level directory name
42 echo example: zip-endian endian-1.0
44 :done