home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 19 Printer / 19-Printer.zip / LPR.ZIP / LPR.MAK < prev   
Text File  |  1991-03-24  |  388b  |  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. lpr.exe:   lpr.c bind.def
  13.         cl $(CFLAGS) lpr.c -o lpr setargv bind.def
  14.  
  15.  
  16.  
  17.