www.pudn.com > ReadingPeopleTracker-1.28.rar > Makefile
# Makefile for the data 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 =
C++FLAGS = $(CFLAGS)
LDFLAGS = -lmatrix -lutils -limgsrc -ltracking -lPCA -lXm
# Header Files
HDRS1 = List.h Observation.h \
PointVector.h BoundaryPoints.h SplineWeights.h \
Region.h RegionSet.h Profile.h ProfileSet.h \
HumanFeatures.h HumanFeatureSet.h \
Stack.h SplineMatrix.h
# Source Files
SRCS1 = SplineMatrix.cc Observation.cc \
PointVector.cc BoundaryPoints.cc SplineWeights.cc \
Region.cc RegionSet.cc Profile.cc ProfileSet.cc \
HumanFeatures.cc HumanFeatureSet.cc \
HDRS = ${HDRS1:S/^/..\//g}
SRCS = ${SRCS1:S/^/..\//g}
OBJS = ${SRCS1:.cc=.o}
TESTSRCS =
# Library names.
LIBNAME = libdata.a
LIBDEBUG = libdata_debug.a
include ../../generic_rules.mk
# Include dependencies file
ifeq (.depend,$(wildcard .depend))
include .depend
endif