Clean-up GAS targets: get rid of "cpp" stuff and replace it with "purified"
COFF and a.out targets [similar to ELF targets]. You might notice some
rudementary support for shared mingw builds under cygwin. It works (it
produces cryptoeay32.dll and ssleay32.dll with everything exported by
name), but it's primarily for testing/debugging purposes, at least for
now...
diff --git a/crypto/Makefile.ssl b/crypto/Makefile.ssl
index 8d59395..e89d16d 100644
--- a/crypto/Makefile.ssl
+++ b/crypto/Makefile.ssl
@@ -65,6 +65,11 @@
 
 x86cpuid-elf.s:	x86cpuid.pl perlasm/x86asm.pl
 	$(PERL) x86cpuid.pl elf $(CFLAGS) $(PROCESSOR) > $@
+x86cpuid-cof.s: x86cpuid.pl perlasm/x86asm.pl
+	$(PERL) x86cpuid.pl coff $(CFLAGS) $(PROCESSOR) > $@
+x86cpuid-out.s: x86cpuid.pl perlasm/x86asm.pl
+	$(PERL) x86cpuid.pl a.out $(CFLAGS) $(PROCESSOR) > $@
+
 amd64cpuid.s: amd64cpuid.pl
 	$(PERL) amd64cpuid.pl $@
 ia64cpuid.s: ia64cpuid.S