home *** CD-ROM | disk | FTP | other *** search
/ Power Programming / powerprogramming1994.iso / progtool / c / scsidrvr.arc / makefile < prev    next >
Makefile  |  1988-10-18  |  636b  |  23 lines

  1. driver3.bin: null.obj driasm.obj driver3.obj scsi.obj makefile
  2.     tlink /m null.obj driasm.obj driver3.obj scsi.obj ,driver3.exe,,\turboc\lib\cs
  3.     exe2bin driver3.exe driver3.bin
  4.     del driver3.exe
  5.  
  6. driver3.obj:    driver3.c driver.h scsi.h makefile
  7.     tcc -c -mt -r- driver3.c
  8.  
  9. driver3.asm:    driver3.c driver.h scsi.h makefile
  10.     tcc -S -mt -r- driver3.c
  11.  
  12. scsi.obj:    scsi.c scsi.h makefile
  13.     tcc -c -mt scsi.c
  14.  
  15. null.obj:    null.c driver.h makefile
  16.     tcc -c -mt null.c
  17.  
  18. driasm.obj:        driasm.s dheader.s
  19.     masm driasm.s,driasm.obj,nul.lst,nul.crf
  20.  
  21. dtest:  null.obj driasm.obj driver3.obj makefile
  22.     tcc -mt -odtest null.obj driasm.obj driver3.obj dtest.c
  23.