Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: downloads/boost_1_34_1/boost/pool/detail/pool_construct_simple.bat @ 29

Last change on this file since 29 was 29, checked in by landauf, 16 years ago

updated boost from 1_33_1 to 1_34_1

  • Property svn:executable set to *
File size: 833 bytes
Line 
1@echo off
2rem
3rem Copyright (C) 2001 Stephen Cleary
4rem
5rem Distributed under the Boost Software License, Version 1.0. (See accompany-
6rem ing file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
7rem
8rem See http://www.boost.org for updates, documentation, and revision history.
9rem
10
11rem Check for Windows NT
12if %OS%==Windows_NT goto NT
13
14rem Not NT - run m4 as normal, then exit
15m4 -P -E -DNumberOfArguments=%1 pool_construct_simple.m4 > pool_construct_simple.inc
16goto end
17
18rem DJGPP programs (including m4) running on Windows/NT do NOT support long
19rem  file names (see the DJGPP v2 FAQ, question 8.1)
20rem Note that the output doesn't have to be a short name because it's an
21rem  argument to the command shell, not m4.
22:NT
23m4 -P -E -DNumberOfArguments=%1 < pool_construct_simple.m4 > pool_construct_simple.inc
24
25:end
Note: See TracBrowser for help on using the repository browser.