# Makefile for various TPRecDir TPU test programs
# All programs are Copyright (c) 1993-1994 by Tony G. Papadimitriou

all            : ldir.exe \
                 zapdir.exe \
                 mcopy.exe \
                 count \
                 where \
                 fd \
                 exts

ldir           : ldir.exe
zapdir         : zapdir.exe
mcopy          : mcopy.exe
count          : count.exe
where          : where.exe
fd             : fd.exe
exts           : exts.exe

# -------------

# The following TPU is not available in source form
# and this line is here only for my own use.
tprecdir.tpu   : c:\tp\progs\units\tprecdir.pas
  @tpc /$g- c:\tp\progs\units\tprecdir

# The following TPU is not available in source form
# and this line is here only for my own use.
tputils.tpu    : c:\tp\progs\units\tputils.pas
  @tpc /$g- c:\tp\progs\units\tputils

ldir.exe       : ldir.pas tprecdir.tpu tputils.tpu
  @tpc ldir

zapdir.exe     : zapdir.pas tprecdir.tpu tputils.tpu
  @tpc zapdir

count.exe      : count.pas tprecdir.tpu tputils.tpu
  @tpc count

where.exe      : where.pas tprecdir.tpu tputils.tpu
  @tpc where

mcopy.exe      : mcopy.pas tprecdir.tpu tputils.tpu
  @tpc mcopy

fd.exe         : fd.pas tprecdir.tpu tputils.tpu
  @tpc fd

exts.exe       : exts.pas tprecdir.tpu tputils.tpu
  @tpc exts
