diff options
author | Steve Holme <steve_holme@hotmail.com> | 2019-05-05 20:17:58 +0100 |
---|---|---|
committer | Steve Holme <steve_holme@hotmail.com> | 2019-05-05 20:17:58 +0100 |
commit | c23b8e827c3d348972db4d0e1a59492f466dca34 (patch) | |
tree | 86924a2c24a9b8fb35010cd5ab951a9bd1c7aad0 /winbuild/gen_resp_file.bat | |
parent | 80637fc473243652c7920965c38dc8a0140e4ead (diff) | |
download | curl-c23b8e827c3d348972db4d0e1a59492f466dca34.tar.gz |
winbuild: Add our standard copyright header to the winbuild batch files
Diffstat (limited to 'winbuild/gen_resp_file.bat')
-rwxr-xr-x | winbuild/gen_resp_file.bat | 24 |
1 files changed, 23 insertions, 1 deletions
diff --git a/winbuild/gen_resp_file.bat b/winbuild/gen_resp_file.bat index c640cee09..aa576f9cf 100755 --- a/winbuild/gen_resp_file.bat +++ b/winbuild/gen_resp_file.bat @@ -1,4 +1,26 @@ -@echo OFF +@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 *************************************************************************** + @if exist %OUTFILE% ( del %OUTFILE% ) |