#
# Makefile for nmtest program, utilizing NetServer and NetClient classes
#
name=nmtest
include $(BUILDHOME)/buildprefs/make.pre


TARGET		= $(OBJ_DIR)/$(name)
SRCS 		=	$(name).cpp NetMessage.cpp
OBJS 		:= $(SRCS_LIST_TO_OBJS)

$(TARGET):	$(OBJ_DIR) $(OBJS)
		$(LD) -o $@ $(OBJS) $(LDFLAGS)
		setversion $@ $(SYSTEM_VERSION) $(APP_VERSION)


include $(BUILDHOME)/buildprefs/make.post
