#
# 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

OBJS		= rmxcomms.obj


build: rmxcomms.lib

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

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