windows-nt/Source/XPSP1/NT/windows/richedit/re41/icap.pl

11 lines
386 B
Perl
Raw Normal View History

2020-09-26 03:20:57 -05:00
# A perl script to build IceCap version of RichEdit
# make the icecap config file
system( "if exist makefile.cfg del makefile.cfg");
open (CONFIG, ">makefile.cfg");
print (CONFIG "#DEFINE LINESERVICES\n");
print (CONFIG "BUILD=w32_x86_shp\n");
print (CONFIG "USERCFLAGS=-Gh -Zi -MD\n");
print (CONFIG "USERLFLAGS=-debug -pdb:riched20.pdb icap.lib\n");
close (CONFIG);
system( "nmake");