|
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 | |
|---|
| 1 | lib_LTLIBRARIES = libsigproc.la |
|---|
| 2 | libsigproc_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 | |
|---|
| 12 | pkginclude_HEADERS = SigProc.h fixed.h |
|---|
| 13 | |
|---|
| 14 | libsigproc_la_LDFLAGS = -version-info 0:7:0 |
|---|
| 15 | |
|---|
| 16 | AM_CXXFLAGS = -Wall -g -O3 $(FPM) |
|---|
| 17 | AM_CFLAGS = -Wall -g -O3 $(FPM) |
|---|
| 18 | |
|---|
| 19 | pkgconfigdir = $(libdir)/pkgconfig |
|---|
| 20 | dist_pkgconfig_DATA = sigproc.pc |
|---|
| 21 | |
|---|
| 22 | |
|---|
| 23 | # --- autotest --- |
|---|
| 24 | |
|---|
| 25 | check_PROGRAMS = cxxtest autotest |
|---|
| 26 | autotest_SOURCES = autotest.cpp |
|---|
| 27 | autotest_LDADD = \ |
|---|
| 28 | filters.o \ |
|---|
| 29 | pll.o \ |
|---|
| 30 | scaling.o \ |
|---|
| 31 | sources.o \ |
|---|
| 32 | utility.o \ |
|---|
| 33 | modem.o |
|---|
| 34 | |
|---|
| 35 | TESTS = autotest |
|---|
| 36 | |
|---|
| 37 | cxxtest: |
|---|
| 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 | |
|---|