# file: GNUmakefile
#
# this make file is for the Signal class
# 

# define the source files
#
ISIP_FILES = *.cc

# define the files these source files depend on (usually include files)
#
ISIP_DEPS = ./signal.h ./signal_constants.h

ISIP_IFLAGS = -I $(ISIP_SNR)/include/

# define the output library
#
ISIP_OLIB = $(ISIP_SNR)/lib/lib_signal.a

# define the compilation flags
# 
ISIP_CFLAGS = -O

# include the isip standard make template
#
include $(ISIP_SNR)/util/make/compile.make

#
# end of file

