# file: $ECE_8113/util/snr_calculator/v1.0/GNUmakefile
#

# define the source files
#
ISIP_FILES = *.cc

# define the files these source files depend on (usually include files)
#
ISIP_DEPS = snr_calculator.h \
	    snr_calculator_constants.h 

# define the local include file path
#
ISIP_IFLAGS = -I $(ISIP_SNR)/include

# define the compilation flags: debug
# 
ISIP_CFLAGS = -O

# define additional include libraries
#
ISIP_LFLAGS_BEFORE = -L $(ISIP_SNR)/lib -l_signal -lm

# define the name of the executable file (*.exe)
#
ISIP_EXE = snr_calculator.exe

# define the installation directory
#
ISIP_BIN = $(ISIP_SNR)/bin

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

#
# end of file
