home *** CD-ROM | disk | FTP | other *** search
/ Power Programming / powerprogramming1994.iso / progtool / microcrn / issue_48.arc / PPXFER.ARC / MAKEFILE < prev    next >
Text File  |  1989-03-26  |  425b  |  18 lines

  1. # makefile for PPXFER.EXE, a program to transfer files
  2. # between computers via parallel ports, using a special
  3. # cable configuration.  
  4. # Copyright Bruce Eckel. For non-commercial use only.
  5.  
  6. .c.obj:
  7.     tcc -IC:\TURBOC -c $*.c
  8.  
  9. ppxfer.exe: ppxfer.obj block.obj
  10.     tcc -LC:\TURBOC -eppxfer ppxfer.obj block.obj
  11.  
  12. ppxfer.obj: ppxfer.c ppxfer.h
  13.  
  14. block.obj: block.c ppxfer.h
  15.  
  16. print:
  17.     +print ppxfer.h  block.c ppxfer.c
  18.