###################################################
###						###
### RV SIP Stack project: main Makefile		###
###						###
###################################################

include ./make/project.mk

# Subdirectories to run make in for the primary targets.
ifneq ($(serverTK),)
	SRCB_LIBSSUBDIRS = core common rvsip
else
	SRCB_LIBSSUBDIRS = core sdp rtp common rvsip

	ifneq ($(nosamples),on)
	SRCB_APPSSUBDIRS += samples 
	endif
	ifneq ($(OS),Windows_NT)
		# for vxworks - don't compile testapp
		SRCB_APPSSUBDIRS += CommonApp stackTestApp
	endif
	ifeq ($(testers),on)
		# vxWorks does not compile the proxy test application
		SRCB_APPSSUBDIRS += CommonApp testers 
		ifneq ($(OS),Windows_NT)
			SRCB_APPSSUBDIRS += proxyTest
		endif
		
	endif

endif 

include $(PROJECT_BASE)/SipTK/make/module.mk

