1*ebfedea0SLionel Sambuc#!/bin/sh 2*ebfedea0SLionel Sambuc# 3*ebfedea0SLionel Sambuc# generate the Microsoft makefiles and .def files 4*ebfedea0SLionel Sambuc# 5*ebfedea0SLionel Sambuc 6*ebfedea0SLionel SambucPATH=util:../util:$PATH 7*ebfedea0SLionel Sambuc 8*ebfedea0SLionel Sambuc# perl util/mk1mf.pl no-sock VC-MSDOS >ms/msdos.mak 9*ebfedea0SLionel Sambuc# perl util/mk1mf.pl VC-W31-32 >ms/w31.mak 10*ebfedea0SLionel Sambucperl util/mk1mf.pl dll VC-WIN16 >ms/w31dll.mak 11*ebfedea0SLionel Sambuc# perl util/mk1mf.pl VC-WIN32 >ms/nt.mak 12*ebfedea0SLionel Sambucperl util/mk1mf.pl dll VC-WIN32 >ms/ntdll.mak 13*ebfedea0SLionel Sambucperl util/mk1mf.pl Mingw32 >ms/mingw32.mak 14*ebfedea0SLionel Sambucperl util/mk1mf.pl Mingw32-files >ms/mingw32f.mak 15*ebfedea0SLionel Sambuc 16*ebfedea0SLionel Sambucperl util/mkdef.pl 16 libeay > ms/libeay16.def 17*ebfedea0SLionel Sambucperl util/mkdef.pl 32 libeay > ms/libeay32.def 18*ebfedea0SLionel Sambucperl util/mkdef.pl 16 ssleay > ms/ssleay16.def 19*ebfedea0SLionel Sambucperl util/mkdef.pl 32 ssleay > ms/ssleay32.def 20