# Makefile template for client-C++ libraries
#
all: lib

#get source and header filenames for this sidl package
-include babel.make

# Replace with the actual package name and necessary flags/libs
NAME = @SIDL_PACKAGE_NAME@

LIBBASE=lib$(NAME)-client-C++
SOURCEC=$(STUBSRCS)
SOURCEH = $(STUBHDRS)
CLEANFILES=$(STUBSRCS) $(STUBHDRS) babel.make



OBJSC = $(STUBSRCS:.cc=.o) 
CFLAGS = -I$(BABEL_HOME)/include  ${TAO_SIDL_FLAGS}

# force C (not C++) compiler because babel doesn't use "extern C" 
CC=${C_CC}

include $(TAO_DIR)/bmake/tao_common


