#
#  Makefile for Waterloo fping
#
#  Targets:
#     Borland 4.0+        (large model or PowerPak extender)
#     Metaware HighC 3.1+ (PharLap 386|DosX)
#     Watcom C 10+        (DOS4GW DOS extender)
#     Digital Mars C 8+   (X32VM DOS extender)
#

SRC         = fping.c

POWERPAK    = 0

BORLAND_EXE = fping.exe
PHARLAP_EXP = fping.exp
WATCOM_EXE  = fping4.exe
DIGMARS_EXE = fping2.exe
QUICKC_EXE  = nul

#HC386_DEFS = -Hpragma=Offwarn(39,209)

#
# Interval is the minimum amount of time between sending a ping packet to 
# any host.
#
# Timeout  is the minimum amount of time between sending a ping packet to
# a particular host.
#
# Retry is the number of ping packets to send to a host before giving up.
#

COMMON_DEFS = -DDEFAULT_INTERVAL=25  \
              -DDEFAULT_TIMEOUT=2500 \
              -DDEFAULT_RETRY=3

!include "..\common.mak"

