# Makefile for the utils library
#

include ../../generic.mk

#
# the included generic.mk defines the necessary things common to all source files
#
# here we only need to define further compiler (C/C++) and linker (LD)
#   arguments specific to the targets in this Makefile
#

#CFLAGS = -DUSE_GL 
CFLAGS = 

C++FLAGS = $(CFLAGS) 

LDFLAGS = -lPCA -ldata -lmatrix -limgsrc

# Header Files

# strcasecmp.h and strncasecmp.h are BSD 4.3 replacements from UCB
HDRS1 = ConfigurationManager.h icons.h \
	NumberedFiles.h NumberedFileSource.h \
	text_output.h tracker_defines_types_and_helpers.h \
	strcasecmp.h strncasecmp.h
#	Profiling.h 

# Source Files

SRCS1 = ConfigurationManager.cc \
	NumberedFiles.cc NumberedFileSource.cc 
#	Profiling.cc 

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

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

TESTSRCS = 

# Library names.

LIBNAME = libutils.a
LIBDEBUG = libutils_debug.a

include ../../generic_rules.mk

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

