home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 19 Printer / 19-Printer.zip / A4PRINT.ZIP / MAKEFILE next >
Text File  |  1990-09-27  |  579b  |  24 lines

  1.  
  2. # Makefile for P1 and P2.
  3. # (Note that this makefile may not work with Microsoft's MAKE.  It does
  4. #  work with PAMAKE 1.9 and will probably work with Microsoft's NMAKE.)
  5. # EXE files are targeted for OS/2 and bound for use under MSDOS
  6.  
  7. # Add /Lp to the next line if your default libraries are the real-mode ones.
  8.  
  9. COPT = /AS /G0 /Fb /W3
  10.  
  11. both: p1.exe p2.exe
  12.  
  13. p1.exe:     p1.c
  14.     @echo NAME P1 WINDOWCOMPAT >p1.def
  15.     cl $(COPT) p1.c p1.def
  16.     del p1.obj
  17.     del p1.def
  18.  
  19. p2.exe:     p2.c
  20.     @echo NAME P2 WINDOWCOMPAT >p2.def
  21.     cl $(COPT) p2.c p2.def
  22.     del p2.obj
  23.     del p2.def
  24.