diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/iem_adaptfilt.c | 2 | ||||
-rw-r--r-- | src/makefile_d_fat | 1 | ||||
-rw-r--r-- | src/makefile_d_ppc | 1 | ||||
-rw-r--r-- | src/makefile_darwin | 1 | ||||
-rw-r--r-- | src/makefile_lin | 1 | ||||
-rw-r--r-- | src/makefile_win | 1 |
6 files changed, 7 insertions, 0 deletions
diff --git a/src/iem_adaptfilt.c b/src/iem_adaptfilt.c index a70d12f..50d79ad 100644 --- a/src/iem_adaptfilt.c +++ b/src/iem_adaptfilt.c @@ -24,6 +24,7 @@ static void *iem_adaptfilt_new(void) } void NLMS_tilde_setup(void); +void NLMSerr_in_tilde_setup(void); void NLMSCC_tilde_setup(void); void n_CNLMS_tilde_setup(void); void n_CLNLMS_tilde_setup(void); @@ -33,6 +34,7 @@ void n_CLNLMS_tilde_setup(void); void iem_adaptfilt_setup(void) { NLMS_tilde_setup(); + NLMSerr_in_tilde_setup(); NLMSCC_tilde_setup(); n_CNLMS_tilde_setup(); n_CLNLMS_tilde_setup(); diff --git a/src/makefile_d_fat b/src/makefile_d_fat index 9412256..d7c933a 100644 --- a/src/makefile_d_fat +++ b/src/makefile_d_fat @@ -14,6 +14,7 @@ LFLAGS = -bundle -undefined suppress -flat_namespace # the sources
SRC = NLMS~.c \ + NLMSerr_in~.c \ NLMSCC~.c \ n_CNLMS~.c \ n_CLNLMS~.c \ diff --git a/src/makefile_d_ppc b/src/makefile_d_ppc index e4f8f55..d82257f 100644 --- a/src/makefile_d_ppc +++ b/src/makefile_d_ppc @@ -14,6 +14,7 @@ LFLAGS = -bundle -undefined suppress -flat_namespace # the sources
SRC = NLMS~.c \ + NLMSerr_in~.c \ NLMSCC~.c \ n_CNLMS~.c \ n_CLNLMS~.c \ diff --git a/src/makefile_darwin b/src/makefile_darwin index 11405a0..b09b451 100644 --- a/src/makefile_darwin +++ b/src/makefile_darwin @@ -19,6 +19,7 @@ SYSTEM = $(shell uname -m) # the sources
SRC = NLMS~.c \ + NLMSerr_in~.c \ NLMSCC~.c \ n_CNLMS~.c \ n_CLNLMS~.c \ diff --git a/src/makefile_lin b/src/makefile_lin index 6db08d8..d86e056 100644 --- a/src/makefile_lin +++ b/src/makefile_lin @@ -18,6 +18,7 @@ SYSTEM = $(shell uname -m) # the sources SRC = NLMS~.c \ + NLMSerr_in~.c \ NLMSCC~.c \ n_CNLMS~.c \ n_CLNLMS~.c \ diff --git a/src/makefile_win b/src/makefile_win index 69f09be..0085f59 100644 --- a/src/makefile_win +++ b/src/makefile_win @@ -22,6 +22,7 @@ PD_WIN_LIB = /NODEFAULTLIB:libc /NODEFAULTLIB:oldnames /NODEFAULTLIB:kernel /NOD SRC = NLMS~.c \ + NLMSerr_in~.c \ NLMSCC~.c \ n_CNLMS~.c \ n_CLNLMS~.c \ |