
# Make file to create prntpcx.exe with Borland C++ 3.1

.autodepend

!if $d(debug)
opt = -v -y
!endif

list = prntpcx.obj dither.obj main.obj pclio.obj pcxio.obj scale.obj sort.obj \
     config.obj

prntpcx.exe : $(list)
    bcc -c- $(opt) $(list)

.c.obj :
    bcc -c $(opt) {$< }
