2019-05-05 15:17:58 -04:00
|
|
|
@echo off
|
|
|
|
rem ***************************************************************************
|
|
|
|
rem * _ _ ____ _
|
|
|
|
rem * Project ___| | | | _ \| |
|
|
|
|
rem * / __| | | | |_) | |
|
|
|
|
rem * | (__| |_| | _ <| |___
|
|
|
|
rem * \___|\___/|_| \_\_____|
|
|
|
|
rem *
|
|
|
|
rem * Copyright (C) 2011 - 2019, Daniel Stenberg, <daniel@haxx.se>, et al.
|
|
|
|
rem *
|
|
|
|
rem * This software is licensed as described in the file COPYING, which
|
|
|
|
rem * you should have received as part of this distribution. The terms
|
|
|
|
rem * are also available at https://curl.haxx.se/docs/copyright.html.
|
|
|
|
rem *
|
|
|
|
rem * You may opt to use, copy, modify, merge, publish, distribute and/or sell
|
|
|
|
rem * copies of the Software, and permit persons to whom the Software is
|
|
|
|
rem * furnished to do so, under the terms of the COPYING file.
|
|
|
|
rem *
|
|
|
|
rem * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
rem * KIND, either express or implied.
|
|
|
|
rem *
|
|
|
|
rem ***************************************************************************
|
|
|
|
|
2019-05-08 05:44:41 -04:00
|
|
|
if exist %OUTFILE% (
|
2019-05-14 05:00:09 -04:00
|
|
|
del %OUTFILE%
|
2018-05-24 10:11:44 -04:00
|
|
|
)
|
2019-05-08 05:44:41 -04:00
|
|
|
|
|
|
|
echo %MACRO_NAME% = \> %OUTFILE%
|
|
|
|
for %%i in (%*) do echo %DIROBJ%/%%i \>> %OUTFILE%
|
|
|
|
echo. >> %OUTFILE%
|
|
|
|
|
2014-09-12 04:22:34 -04:00
|
|
|
:END
|