# 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) $(IORSRCS)
OBJSC = $(STUBSRCS:.c=.o) $(IORSRCS:.c=.o)
SOURCEH=$(STUBHDRS) $(IORHDRS)
CLEANFILES=$(STUBSRCS) $(STUBHDRS) $(IORSRCS) $(IORHDRS) babel.make
CFLAGS = ${TAO_SIDL_FLAGS_C}


#get babel_home variable
include $(TAO_DIR)/bmake/tao_common
PCC=${CC}
