home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 19 Printer / 19-Printer.zip / PRNT32.ZIP / MAKEFILE next >
Text File  |  1992-07-17  |  262b  |  16 lines

  1. BASE=prnt32
  2. #DEV=-DDEV
  3.  
  4. !IFDEF DEV
  5. PROGTYPE=PM
  6. !ELSE
  7. PROGTYPE=VIO
  8. !ENDIF
  9.  
  10. $(BASE).exe: $*.obj
  11.      link386 /NOI /MAP /DE /NOL /A:16 /E /PMTYPE:$(PROGTYPE) /ST:12288 $*,,,,;
  12.  
  13. $(BASE).obj: $*.c
  14.      icc /Q+ /Ss /W3 /Kbcepr /Ti+ /O- $(DEV) /C $*.c
  15.  
  16.