# # Copyright 2008, 2009 Free Software Foundation, Inc. # Copyright 2011, 2012, 2014 Range Networks, Inc. # # This software is distributed under the terms of the GNU Public License. # See the COPYING file in the main directory for details. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # include $(top_srcdir)/Makefile.common noinst_LTLIBRARIES = libGSMShare.la # AM_CPPFLAGS = $(STD_DEFINES_AND_INCLUDES) # AM_CXXFLAGS = -Wall -O3 -g -ldl -lpthread libGSMShare_la_CXXFLAGS = $(AM_CXXFLAGS) -O3 libGSMShare_la_SOURCES = \ L3Enums.cpp \ AmrCoder.cpp \ GSM503Tables.cpp \ ViterbiR204.cpp \ A51.cpp noinst_PROGRAMS = \ ViterbiTest \ AMRTest \ A51Test # ReportingTest noinst_HEADERS = \ L3Enums.h \ Viterbi.h \ ViterbiR204.h \ AmrCoder.h \ ViterbiR204.h \ GSM503Tables.h \ A51.h ViterbiTest_SOURCES = ViterbiTest.cpp ViterbiTest_LDADD = \ $(GLOBALS_LA) \ $(noinst_LTLIBRARIES) \ $(GSM_LA) \ $(COMMON_LA) \ $(SQLITE_LA) AMRTest_SOURCES = AMRTest.cpp AMRTest_LDADD = \ $(GLOBALS_LA) \ $(noinst_LTLIBRARIES) \ $(GSM_LA) \ $(COMMON_LA) \ $(SQLITE_LA) A51Test_SOURCES = A51Test.cpp A51Test_LDADD = \ $(GLOBALS_LA) \ $(noinst_LTLIBRARIES) \ $(GSM_LA) \ $(COMMON_LA) \ $(SQLITE_LA)