# Makefile for the image source (imgsrc) 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 = -ljpeg

HDRS1 = RGB32Image.h  HSV32Image.h \
	Image.h Kernel.h Grey8Image.h \
	MedianFilterSource.h \
	JPEGSource.h PnmSource.h \
	GreyMap.h \
	ImageSource.h MultiBackgroundSource.h \
	BufferedSlaveImageSource.h \
	IEEE1394Adaptor.h \
	IEEE1394Source.h

SRCS1 = RGB32Image.cc HSV32Image.cc \
	Image.cc ImageSource.cc \
	MedianFilterSource.cc Grey8Image.cc  \
	JPEGSource.cc PnmSource.cc \
	GreyMap.cc \
	Kernel.cc MovieStore.cc \
	BufferedSlaveImageSource.cc \
	IEEE1394Adaptor.cc \
	IEEE1394Source.cc

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

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

TESTSRCS = 

LIBNAME = libimgsrc.a
LIBDEBUG = libimgsrc_debug.a

include ../../generic_rules.mk

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

