|
Revision 5019, 0.8 KB
(checked in by jgaeddert, 6 years ago)
|
|
moving header file, build directory as not to clash with C++ SigProc?
|
-
Property svn:eol-style set to
native
|
| Line | |
|---|
| 1 | lib_LTLIBRARIES = libsigprocc.la |
|---|
| 2 | libsigprocc_la_SOURCES = \ |
|---|
| 3 | src/filters.c \ |
|---|
| 4 | src/utility.c \ |
|---|
| 5 | src/modem.c |
|---|
| 6 | |
|---|
| 7 | pkginclude_HEADERS = src/sigprocc.h |
|---|
| 8 | |
|---|
| 9 | libsigprocc_la_LDFLAGS = -version-info 0:7:0 |
|---|
| 10 | |
|---|
| 11 | AM_CFLAGS = -Wall -g -O3 $(FPM) |
|---|
| 12 | |
|---|
| 13 | pkgconfigdir = $(libdir)/pkgconfig |
|---|
| 14 | dist_pkgconfig_DATA = sigprocc.pc |
|---|
| 15 | |
|---|
| 16 | |
|---|
| 17 | # --- autotest --- |
|---|
| 18 | |
|---|
| 19 | check_PROGRAMS = cxxtest autotest |
|---|
| 20 | autotest_SOURCES = autotest.cpp |
|---|
| 21 | autotest_LDADD = \ |
|---|
| 22 | filters.o \ |
|---|
| 23 | utility.o \ |
|---|
| 24 | modem.o |
|---|
| 25 | |
|---|
| 26 | TESTS = autotest |
|---|
| 27 | |
|---|
| 28 | cxxtest: |
|---|
| 29 | cxxtestgen.py --error-printer -o autotest.cpp \ |
|---|
| 30 | tests/design_rrc_filter_testsuite.h \ |
|---|
| 31 | tests/dot_product_testsuite.h \ |
|---|
| 32 | tests/modem_testsuite.h |
|---|
| 33 | |
|---|
| 34 | # --- documentation --- |
|---|
| 35 | .PHONY: docs documentation |
|---|
| 36 | |
|---|
| 37 | docs : |
|---|
| 38 | ./genDocs.py |
|---|
| 39 | |
|---|