source: NonGTP/Boost/boost/pool/detail/pool_construct_simple.bat @ 857

Revision 857, 959 bytes checked in by igarcia, 18 years ago (diff)
Line 
1@echo off
2rem
3rem Copyright (C) 2001 Stephen Cleary
4rem
5rem This file can be redistributed and/or modified under the terms found
6rem  in "copyright.html"
7rem This software and its documentation is provided "as is" without express or
8rem  implied warranty, and with no claim as to its suitability for any purpose.
9rem
10rem See http://www.boost.org for updates, documentation, and revision history.
11rem
12
13rem Check for Windows NT
14if %OS%==Windows_NT goto NT
15
16rem Not NT - run m4 as normal, then exit
17m4 -P -E -DNumberOfArguments=%1 pool_construct_simple.m4 > pool_construct_simple.inc
18goto end
19
20rem DJGPP programs (including m4) running on Windows/NT do NOT support long
21rem  file names (see the DJGPP v2 FAQ, question 8.1)
22rem Note that the output doesn't have to be a short name because it's an
23rem  argument to the command shell, not m4.
24:NT
25m4 -P -E -DNumberOfArguments=%1 < pool_construct_simple.m4 > pool_construct_simple.inc
26
27:end
Note: See TracBrowser for help on using the repository browser.