diff options
author | Werner Koch <[email protected]> | 2000-11-23 15:28:15 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2000-11-23 15:28:15 +0000 |
commit | b7a7d9b9cc78e28718b73238e6b59f4f1eaa9971 (patch) | |
tree | df9a1a33e67a9c5e2a818eca1c5af9cab8dda516 /build-w32 | |
parent | Added some comments and prepared for W32 support (diff) | |
download | gpgme-b7a7d9b9cc78e28718b73238e6b59f4f1eaa9971.tar.gz gpgme-b7a7d9b9cc78e28718b73238e6b59f4f1eaa9971.zip |
Now we are able to compile the W32 stuff - don't now whether it works; I have
no Windoze box here.
Diffstat (limited to '')
-rwxr-xr-x | build-w32 | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/build-w32 b/build-w32 new file mode 100755 index 00000000..bb72045c --- /dev/null +++ b/build-w32 @@ -0,0 +1,11 @@ +#!/bin/sh + +target=i386--mingw32 +host=`./config.guess` + +CC="${target}-gcc" +CPP="${target}-gcc -E" +RANLIB="${target}-ranlib" + +export CC CPP RANLIB +./configure --host=${host} --target=${target} $* |