#
#  Makefile for PPP Project Files
#

# uncomment the next line to enable the SMTP and POP server debug messages
#DEBUG= -DSMTP_POP_DEBUG

CFLAGS= -ml -R- -W- -K -K2 -k -v- -vi -Z -IC:\bc45\include

CC= bcc $(CFLAGS) $(DEBUG)

#  list of executables

all: network.exe pop.exe news.exe exp.exe uu.exe

network.exe: network.c
        $(CC) network.c

pop.exe: pop.c
        $(CC) pop.c watt.lib

news.exe: news.c
        $(CC) news.c watt.lib

exp.exe: exp.c
        $(CC) exp.c

uu.exe: uu.c uumain.c
        $(CC) uu.c uumain.c
