root/SigProc/branches/SigProc-c/Makefile.am @ 5019

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
RevLine 
[5018]1lib_LTLIBRARIES = libsigprocc.la
2libsigprocc_la_SOURCES =             \
[5017]3    src/filters.c                   \
4    src/utility.c                   \
5    src/modem.c 
6
[5019]7pkginclude_HEADERS = src/sigprocc.h
[5017]8
[5018]9libsigprocc_la_LDFLAGS = -version-info 0:7:0
[5017]10
11AM_CFLAGS = -Wall -g -O3 $(FPM)
12
[5018]13pkgconfigdir = $(libdir)/pkgconfig
14dist_pkgconfig_DATA = sigprocc.pc
[5017]15
16
17# --- autotest ---
18
19check_PROGRAMS = cxxtest autotest
20autotest_SOURCES = autotest.cpp
21autotest_LDADD =                    \
22    filters.o                       \
23    utility.o                       \
24    modem.o
25
26TESTS = autotest
27
28cxxtest:
29        cxxtestgen.py --error-printer -o autotest.cpp   \
[5018]30        tests/design_rrc_filter_testsuite.h \
[5017]31        tests/dot_product_testsuite.h \
[5018]32        tests/modem_testsuite.h
[5017]33
34# --- documentation ---
35.PHONY: docs documentation
36
37docs :
38        ./genDocs.py
39
Note: See TracBrowser for help on using the browser.