#
# Makefile for WatTCP syslog daemon
#
# Ken Yap <ken@nlc.net.au>
#

SRC         = syslogd.c pidfile.c snprintf.c ntp.c

BORLAND_EXE = syslogd.exe
PHARLAP_EXP = syslogd.exp
DJGPP_EXE   = syslog32.exe

!include ..\common.mak

HEADERS = pidfile.h portable.h version.h

syslogd.obj:  syslogd.c $(HEADERS)
pidfile.obj:  pidfile.c $(HEADERS)
snprintf.obj: snprintf.c
ntp.obj:      ntp.c ntp.h

syslogd.o32:  syslogd.c $(HEADERS)
pidfile.o32:  pidfile.c $(HEADERS)
snprintf.o32: snprintf.c
ntp.o32:      ntp.c ntp.h

syslogd.o:    syslogd.c $(HEADERS)
pidfile.o:    pidfile.c $(HEADERS)
snprintf.o:   snprintf.c
ntp.o:        ntp.c ntp.h

