Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
396 B

  1. # A perl script to build IceCap version of RichEdit
  2. # make the icecap config file
  3. system( "if exist makefile.cfg del makefile.cfg");
  4. open (CONFIG, ">makefile.cfg");
  5. print (CONFIG "#DEFINE LINESERVICES\n");
  6. print (CONFIG "BUILD=w32_x86_shp\n");
  7. print (CONFIG "USERCFLAGS=-Gh -Zi -MD\n");
  8. print (CONFIG "USERLFLAGS=-debug -pdb:riched20.pdb icap.lib\n");
  9. close (CONFIG);
  10. system( "nmake");