home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 11 Util / 11-Util.zip / WC2.ZIP / WC.MAK < prev   
Text File  |  1991-03-24  |  384b  |  17 lines

  1.  
  2. #  Compiler Switches:
  3. #   /Zp - Pack structure members - OS/2 API calls expect packed structures.
  4. #   /G2 - Enable 80286 instruction generation.
  5. #   /Gs - Remove stack probes - Use only on fully debugged program.
  6. #   /AL - Using the Large memory model.
  7.  
  8.  
  9. CFLAGS=-Fb -ALfu -G2s -Zp
  10.  
  11.  
  12. wc.exe:   wc.c bind.def
  13.         cl $(CFLAGS) wc.c -o wc setargv bind.def
  14.  
  15.  
  16.  
  17.