|
Revision 5413, 1.6 KB
(checked in by jgaeddert, 6 years ago)
|
|
adding byte packing/unpacking functions 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 | sequencing.cpp \ |
|---|
| 7 | sources.cpp \ |
|---|
| 8 | utility.cpp \ |
|---|
| 9 | fec_conv.cpp \ |
|---|
| 10 | fixed.c \ |
|---|
| 11 | modem.cpp |
|---|
| 12 | |
|---|
| 13 | pkginclude_HEADERS = SigProc.h fixed.h |
|---|
| 14 | |
|---|
| 15 | libsigproc_la_LDFLAGS = -version-info 0:7:0 |
|---|
| 16 | |
|---|
| 17 | AM_CXXFLAGS = -Wall -g -O3 $(FPM) |
|---|
| 18 | AM_CFLAGS = -Wall -g -O3 $(FPM) |
|---|
| 19 | |
|---|
| 20 | pkgconfigdir = $(libdir)/pkgconfig |
|---|
| 21 | dist_pkgconfig_DATA = sigproc.pc |
|---|
| 22 | |
|---|
| 23 | |
|---|
| 24 | # --- autotest --- |
|---|
| 25 | |
|---|
| 26 | check_PROGRAMS = cxxtest autotest |
|---|
| 27 | autotest_SOURCES = autotest.cpp |
|---|
| 28 | autotest_LDADD = \ |
|---|
| 29 | filters.o \ |
|---|
| 30 | pll.o \ |
|---|
| 31 | scaling.o \ |
|---|
| 32 | sequencing.o \ |
|---|
| 33 | sources.o \ |
|---|
| 34 | utility.o \ |
|---|
| 35 | modem.o \ |
|---|
| 36 | fec_conv.o |
|---|
| 37 | |
|---|
| 38 | TESTS = autotest |
|---|
| 39 | |
|---|
| 40 | cxxtest: |
|---|
| 41 | cxxtestgen.py --error-printer -o autotest.cpp \ |
|---|
| 42 | autotest_sources/FIRPolyphaseFilterBank_testsuite.h \ |
|---|
| 43 | autotest_sources/IIRFilter_testsuite.h \ |
|---|
| 44 | autotest_sources/CircularBuffer_testsuite.h \ |
|---|
| 45 | autotest_sources/Modem_testsuite.h \ |
|---|
| 46 | autotest_sources/DesignRRCFilter_testsuite.h \ |
|---|
| 47 | autotest_sources/dot_product_testsuite.h \ |
|---|
| 48 | autotest_sources/trig_testsuite.h \ |
|---|
| 49 | autotest_sources/sequencing_testsuite.h \ |
|---|
| 50 | autotest_sources/pack_testsuite.h \ |
|---|
| 51 | autotest_sources/Fec_conv_testsuite.h |
|---|
| 52 | |
|---|
| 53 | # --- documentation --- |
|---|
| 54 | .PHONY: docs documentation |
|---|
| 55 | |
|---|
| 56 | docs : |
|---|
| 57 | ./genDocs.py |
|---|
| 58 | |
|---|