]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/pool/include/boost/pool/detail/pool_construct.bat
bump version to 12.2.2-pve1
[ceph.git] / ceph / src / boost / libs / pool / include / boost / pool / detail / pool_construct.bat
1 @echo off
2 rem
3 rem Copyright (C) 2000, 2001 Stephen Cleary
4 rem
5 rem Distributed under the Boost Software License, Version 1.0. (See accompany-
6 rem ing file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
7
8
9
10 rem Check for Windows NT
11 if %OS%==Windows_NT goto NT
12
13 rem Not NT - run m4 as normal, then exit
14 m4 -P -E -DNumberOfArguments=%1 pool_construct.m4 > pool_construct.ipp
15 goto end
16
17 rem DJGPP programs (including m4) running on Windows/NT do NOT support long
18 rem file names (see the DJGPP v2 FAQ, question 8.1)
19 rem Note that the output doesn't have to be a short name because it's an
20 rem argument to the command shell, not m4.
21 :NT
22 m4 -P -E -DNumberOfArguments=%1 < pool_construct.m4 > pool_construct.ipp
23
24 :end