root/SigProc/trunk/SigProc/Makefile.am @ 4147

Revision 4147, 1.2 KB (checked in by hvolos, 6 years ago)

Added the convolutional code to SigProc?

  • Property svn:eol-style set to native
Line 
1lib_LTLIBRARIES = libsigproc.la
2libsigproc_la_SOURCES =             \
3    filters.cpp                     \
4    pll.cpp                         \
5    scaling.cpp                     \
6    sources.cpp                     \
7    utility.cpp                     \
8    fec_conv.cpp                    \
9    fixed.c                         \
10    modem.cpp
11
12pkginclude_HEADERS = SigProc.h fixed.h
13
14libsigproc_la_LDFLAGS = -version-info 0:7:0
15
16AM_CXXFLAGS = -Wall -g -O3 $(FPM)
17AM_CFLAGS = -Wall -g -O3 $(FPM)
18
19pkgconfigdir = $(libdir)/pkgconfig
20dist_pkgconfig_DATA = sigproc.pc
21
22
23# --- autotest ---
24
25check_PROGRAMS = cxxtest autotest
26autotest_SOURCES = autotest.cpp
27autotest_LDADD =                    \
28    filters.o                       \
29    pll.o                           \
30    scaling.o                       \
31    sources.o                       \
32    utility.o                       \
33    modem.o
34
35TESTS = autotest
36
37cxxtest:
38        cxxtestgen.py --error-printer -o autotest.cpp \
39        autotest_sources/FIRPolyphaseFilterBank_testsuite.h \
40        autotest_sources/IIRFilter_testsuite.h \
41        autotest_sources/CircularBuffer_testsuite.h \
42        autotest_sources/Modem_testsuite.h \
43        autotest_sources/DesignRRCFilter_testsuite.h
44
Note: See TracBrowser for help on using the browser.