#
# Targets
#
DEST	      = $(MAG_ROOT)/lib

SRCS	      = \
		DbCacheProxies.cpp \
		CseSubscriberMgr.cpp \
		CseDomainMap.cpp \
		CseDomainProxy.cpp \
		CseDomainMatching.cpp \
		DbProxy.cpp \
		StProfileImage.cpp \
		NetSelPolicyMgr.cpp \
		ConferenceResourceMgr.cpp \
		ConferenceResource.cpp \
		ConferenceFactory.cpp \
		MeetMeConfPool.cpp \
		MeetMeConference.cpp \
		MediaServerConference.cpp \
		TimezoneMgr.cpp

OBJS          = $(SRCS:%.cpp=%.o)

INCL	= -I.

LIBNAME	      = libDbCache


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

include ../include/Makefile.PublicIncludes
include ../incCse/Makefile.CseIncludes
# unlike every other lib* in the CSE core, this lib also needs access
# to service-specific incSrc* which contain service-specific structs
# which define the provisioned subscription data
INCL += -I../incSrvMcs
# temporary access to libDbController/DbImage.h
# until I have time to refactor DbProxy so that it depends on StProfile directly
# INCL += -I../libDbController

###
$(OBJS): %.o: %.cpp

