# Makefile for XML library
#

include ../../generic.mk

SHELL = /bin/sh

CFLAGS = -I/opt/xml4c/include

LDFLAGS = -lutils

C++FLAGS = $(CFLAGS) 

# Header Files

HDRS1 = XMLRegionHandler.h XMLRegionSource.h BufferedSlaveXMLRegionSource.h 

# Source Files

SRCS1 =	XMLRegionHandler.cc XMLRegionSource.cc BufferedSlaveXMLRegionSource.cc 

HDRS = ${HDRS1:S/^/..\//g}
SRCS = ${SRCS1:S/^/..\//g}

OBJS = ${SRCS1:.cc=.o}

TESTSRCS = 

LIBNAME = libXML.a
LIBDEBUG = libXML_debug.a

include ../../generic_rules.mk

# Include dependencies file
ifeq (.depend,$(wildcard .depend))
include .depend
endif
