#
# Targets
#
DEST	      = $(MAG_ROOT)/bin
SRCS	=	\
		createTests_stub.cpp 
		
OBJS	=	\
		createTests_stub.o

INCL	      = \
		-I$(MAG_ROOT)/src/include

ifeq ("$(PNX_OS)","LINUX")
CLNTSH =
else
CLNTSH = -lclntsh
endif

#
# These are the CSE libraries to which createTests will link.
# Don't change this list without also changing the equivalent
# list defined in tools/src/createTests/main/Makefile
#

LIBS	      = \
	-L$(TOOLS_ROOT)/lib \
	-L$(UTL_ROOT)/lib \
	-L$(MAG_ROOT)/lib \
	-lxml2 \
	-lDbUtils \
	-lZoneInfo \
	-lMatching \
	-lCseConfig \
	-lDbCache \
	-lCsePublic \
	-lFakeCse \
		

EXEC	      = createTests_stub 


include $(UTL_ROOT)/MakeIncl/Makeflags.$(PNX_OS)
include $(UTL_ROOT)/MakeIncl/MakeExec

###
createTests_stub.o: createTests_stub.cpp

