# makefile for PPXFER.EXE, a program to transfer files
# between computers via parallel ports, using a special
# cable configuration.  
# Copyright Bruce Eckel. For non-commercial use only.

.c.obj:
	tcc -IC:\TURBOC -c $*.c

ppxfer.exe: ppxfer.obj block.obj
	tcc -LC:\TURBOC -eppxfer ppxfer.obj block.obj

ppxfer.obj: ppxfer.c ppxfer.h

block.obj: block.c ppxfer.h

print:
	+print ppxfer.h  block.c ppxfer.c
