diff options
author | musil <tmusil@users.sourceforge.net> | 2011-01-14 11:38:08 +0000 |
---|---|---|
committer | musil <tmusil@users.sourceforge.net> | 2011-01-14 11:38:08 +0000 |
commit | 7a114b1b7c8114c224aa82ae0c3aafae95dd7d36 (patch) | |
tree | 4a85c44fbf892b84bdb098eb4c4a82f1d809662a /src | |
parent | fa20d10f34a2099a359d5479a3fe0c7f834d7618 (diff) |
new makefiles, because new NLMSerr_in.c
svn path=/trunk/externals/iem/iem_adaptfilt/; revision=14739
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 \ |