diff options
author | Daniel Stenberg <daniel@haxx.se> | 2004-02-26 16:13:13 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2004-02-26 16:13:13 +0000 |
commit | b6a4ca9bc82c4dbf4f3abaa6ff63bb832fa1bd03 (patch) | |
tree | 66fda4520e004896a38ffca7e0d716216a7005d3 /buildconf.bat | |
parent | 9b6350d0b0e7122790f3578a0bfbf14e03d21a5d (diff) | |
download | curl-b6a4ca9bc82c4dbf4f3abaa6ff63bb832fa1bd03.tar.gz |
this works like buildconf + configure does on unixes
Diffstat (limited to 'buildconf.bat')
-rw-r--r-- | buildconf.bat | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/buildconf.bat b/buildconf.bat new file mode 100644 index 000000000..fb26a0b81 --- /dev/null +++ b/buildconf.bat @@ -0,0 +1,17 @@ +@echo off
+REM set up a CVS tree to build when there's no autotools
+REM $Revision$
+REM $Date$
+
+REM create ca-bundle.h
+echo /* This file is generated automatically */ >lib\ca-bundle.h
+echo #define CURL_CA_BUNDLE getenv("CURL_CA_BUNDLE") >>lib\ca-bundle.h
+
+REM create getdate.c
+copy lib\getdate.c.cvs lib\getdate.c
+
+REM create hugehelp.c
+copy src\hugehelp.c.cvs src\hugehelp.c
+
+REM create Makefile
+copy Makefile.dist Makefile
\ No newline at end of file |