diff options
author | Pierre Joye <pierre.php@gmail.com> | 2011-01-28 22:19:44 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2011-01-28 22:24:39 +0100 |
commit | 76ac6b94ed360f9edb1c000e600a33df5a6cbc9b (patch) | |
tree | 446546c1690b18d1d2b3c0aa239bb3209e78c57f /winbuild/gen_resp_file.bat | |
parent | 28c830efd8cc71409423c545ff052ed8215ddb78 (diff) | |
download | curl-76ac6b94ed360f9edb1c000e600a33df5a6cbc9b.tar.gz |
Windows build: alternative makefile
This is a separate makefile for MSVC builds. It is deliberately put in
another dir than src/ and lib/ to allow a different build experience
than the previous - at least during a period. Eventually we should
unify.
Diffstat (limited to 'winbuild/gen_resp_file.bat')
-rw-r--r-- | winbuild/gen_resp_file.bat | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/winbuild/gen_resp_file.bat b/winbuild/gen_resp_file.bat new file mode 100644 index 000000000..c2fa66777 --- /dev/null +++ b/winbuild/gen_resp_file.bat @@ -0,0 +1,6 @@ +@echo OFF
+@del %OUTFILE%
+@echo %MACRO_NAME% = \> %OUTFILE%
+@for %%i in (%*) do @echo %LIBCURL_DIROBJ%/%%i \>> %OUTFILE%
+@echo. >> %OUTFILE%
+:END
|