#
#  Makefile for PPP Project Files
#

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

#41 CFLAGS= -R- -W- -H- -N -K -K2 -f -v- -vi- -dc -Z -2 -k -IC:\bc45\include
#34 CFLAGS= -ml -R- -W- -K -K2 -ff -v- -vi -Z -1 -IC:\bc45\include
#42 CFLAGS= -R- -W- -K -K2 -ff -v- -vi -Ic:\bc45\include -Lc:\bc45\lib

CFLAGS= -ml -R- -ff -K -O1 -ff -v- -2 -k- -N -IC:\BC45\INCLUDE -LC:\BC45\LIB

CC= bcc $(CFLAGS) $(DEBUG)

#  list of executables

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

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

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

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

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

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

pppurge.exe: pppurge.c version.h
        $(CC) pppurge.c
