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

SRCS	      = \
		DbImage.cpp \
		ThreadTimer.cpp \
		DbProxyConnector.cpp \
		CacheController.cpp \
		DbCache.cpp
		
# 		CseDomainMap.cpp \
# 		CseDomainProxy.cpp \
# 		CseDomainMatching.cpp \
# 		CacheController.cpp \
# 		DbProxy.cpp \
# 		DbProxyConnector.cpp \
# 		DbImage.cpp \
# 		StProfileImage.cpp \
# 		ThreadTimer.cpp \
# 		ConferenceResourceMgr.cpp \
# 		ConferenceResource.cpp \
# 		ConferenceFactory.cpp \
# 		MeetMeConfPool.cpp \
# 		MeetMeConference.cpp
		
# OBJS	      =  \
# 		DbCache.o \
# 		CseDomainMap.o \
# 		CseDomainProxy.o \
# 		CseDomainMatching.o \
# 		CacheController.o \
# 		DbProxy.o \
# 		DbProxyConnector.o \
# 		DbImage.o \
# 		StProfileImage.o \
# 		ThreadTimer.o \
# 		ConferenceResourceMgr.o \
#                 ConferenceResource.o \
#                 ConferenceFactory.o \
#                 MeetMeConfPool.o \
#                 MeetMeConference.o
		
OBJS          = $(SRCS:%.cpp=%.o)

INCL	= -I.

LIBNAME	      = libDbController

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 internals of another library i.e. libDbCache
# we tolerate this instead of declaring a new inc* to contrain these shared headers
# because this libDbController is deprecated anyway and should be obsoleted in M3
INCL += -I../libDbCache

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

