#
# This makefile assumes the compiler has be setup so that it all by
# itself finds the necessary startup modules.
#

!include ..\rmxcomms.mak

INCLUDE		= -I..\include \
		  -IC:\TCPIP\INCLUDE
LDOPTS		= -LC:\TCPIP\LIB
LIBS		= so32dll.lib tcp32dll.lib
OBJS		= rmxtcpip.obj


build: rmxtcpip.dll

rmxtcpip.dll: $(OBJS)
	$(CXX) $(LDFLAGS) -sd -e$&.dll -sD$&.def $(OBJS) $(LIBS)

clean:
	del *.dll *.lib *.dll *.obj *~ 2> NUL || echo > NUL




