File: Makefile.am

package info (click to toggle)
rtfilter 1.1-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, buster, jessie, jessie-kfreebsd, stretch, trixie, wheezy
  • size: 1,792 kB
  • ctags: 544
  • sloc: sh: 11,062; ansic: 2,317; makefile: 115
file content (29 lines) | stat: -rw-r--r-- 900 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
EXTRA_DIST = test-float.sh test-complex-float.sh\
             test-double.sh test-complex-double.sh\
             test-downsample.sh\
	     checkfiltres.m checkdown.m
AM_CFLAGS = -I$(top_srcdir)/src

if HAVE_CLOCK_FN
noinst_PROGRAMS = measure-rtfilter
measure_rtfilter_SOURCES = measure-rtfilter.c
measure_rtfilter_LDADD = $(top_builddir)/src/librtfilter.la $(OPTION_LIBS)
endif

check_PROGRAMS = cmpwmatlab downsample testchebyshev

cmpwmatlab_SOURCES = cmpwmatlab.c
cmpwmatlab_LDADD = $(top_builddir)/src/librtfilter.la

downsample_SOURCES = downsample.c
downsample_LDADD = $(top_builddir)/src/librtfilter.la

testchebyshev_SOURCES = testchebyshev.c cheby-table.h
testchebyshev_LDADD = $(top_builddir)/src/librtfilter.la

TESTS_ENVIRONMENT = PATH=$(PATH):$(buildir)

TESTS = testchebyshev \
	 test-float.sh test-complex-float.sh 	\
	 test-double.sh test-complex-double.sh   \
	 test-downsample.sh