mirror of
https://github.com/moparisthebest/curl
synced 2024-11-04 16:45:06 -05:00
8ff7555891
This removes the slightly annoying "Could not file LIBCURL_OBJS.inc" and "Could not find CURL_OBJS.inc.inc" message when building into a clean folder. closes #2602
9 lines
167 B
Batchfile
Executable File
9 lines
167 B
Batchfile
Executable File
@echo OFF
|
|
@if exist %OUTFILE% (
|
|
del %OUTFILE%
|
|
)
|
|
@echo %MACRO_NAME% = \> %OUTFILE%
|
|
@for %%i in (%*) do @echo %DIROBJ%/%%i \>> %OUTFILE%
|
|
@echo. >> %OUTFILE%
|
|
:END
|