home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 6 File / 06-File.zip / DU_DF2.ZIP / MAKEFILE < prev    next >
Text File  |  1991-03-28  |  489b  |  23 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=-AL -G2s -Zp
  10.  
  11.  
  12. targets= du.exe df.exe 
  13.  
  14. all:     $(targets)
  15.  
  16. du.exe:     du.obj opendir.obj bind.def
  17.         cl -Fb du opendir bind.def
  18.  
  19. df.exe:     df.obj bind.def
  20.         cl -Fb df bind.def
  21.  
  22.  
  23.