#########################################################################
#########################################################################

LIB = ../lib/libbxutils.a

CFLAGS_ALL	= -D${MACH_OS} -DMOTIF -DSYSV -DXT_CODE -DXOPEN_CATALOG \
                  -I./  -I../../include -I${IRIS_ROOT}/include

CFLAGS		= -c ${DEBUGFLAG}  ${C_OPT} ${CFLAGS_ALL}
CXXFLAGS        = -c ${DEBUGFLAG} ${CC_OPT} ${CFLAGS_ALL}
CCFLAGS = ${CXXFLAGS}

CFLAGS_RELAXED	= -c ${DEBUGFLAG} ${C_OPT_RELAXED}  ${CFLAGS_ALL}
CCFLAGS_RELAXED = -c ${DEBUGFLAG} ${CC_OPT_RELAXED} ${CFLAGS_ALL}

all : all_      # Just to insure that it's first

CC_SRCS       =  bxUtils.C
CC_OBJS = ${CC_SRCS:.C=.o}

all_: ${LIB}

MKDEPEND_CSRCS = ${CC_SRCS}
depend:; ${MKDEPEND}

${LIB} : ${CC_OBJS}
		rm -f ${LIB}
		ar -rscv ${LIB} ${CC_OBJS}
		rootchmod 664 ${LIB}

install:	all_

cleanexe:;
clean:		cleanexe
		rm -f *.o
# DO NOT DELETE
