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