#
#  WinPMail makefile
#  Pegasus Mail System, (c) 1990-95, David Harris,
#  all rights reserved.
#

CC = bcc
WINCC = bcc
TLINK = tlink
WINFLAGS = -ml -v -WDE -O1 -d -w -w-pin
CFLAGS = -I\pmail\include -ml -v -w -w-pin -d -O1 -Z

.c.obj:
   $(WINCC) -c $(WINFLAGS) $<

.asm.obj:
   tasm /z /ml $<

cryptxor: cryptxor.dll

cryptxor.dll: cryptxor.obj encrypt.obj
   tlink /Twd /v /m @cryptxor.rsp

