diff options
author | Davide Morelli <morellid@users.sourceforge.net> | 2005-05-23 10:09:44 +0000 |
---|---|---|
committer | Davide Morelli <morellid@users.sourceforge.net> | 2005-05-23 10:09:44 +0000 |
commit | b59e1b450df975a0beb2edf7014f671cfc473b1f (patch) | |
tree | 40a5a3734f0ec5c1ee3dd1a9f825b097f62f914d | |
parent | 517844c1a415f24039633b63da8171b3c192098a (diff) |
added includes, now only ann.dll is needed to run all 3 ann objects
svn path=/trunk/externals/ann/; revision=3071
-rw-r--r-- | src/ann.c | 4 | ||||
-rwxr-xr-x | src/makefile.msvc | 10 |
2 files changed, 9 insertions, 5 deletions
@@ -6,6 +6,10 @@ #include "ann.h" +#include "ann_som.c" +#include "ann_mlp.c" +#include "ann_td.c" + typedef struct ann { t_object t_ob; diff --git a/src/makefile.msvc b/src/makefile.msvc index 130d726..3bfe38d 100755 --- a/src/makefile.msvc +++ b/src/makefile.msvc @@ -6,15 +6,15 @@ # customize here !
VC="C:\Programmi\Microsoft Visual Studio .NET\Vc7"
-PDPATH="H:\PureData\pd-0.38-3.msw\pd"
-FANNSRC="H:\PureData\FANN\fann-1.2.0\fann-1.2.0\src\include"
-FANNLIB="H:\PureData\FANN\fann-1.2.0\fann-1.2.0\MSVC++\Release"
+PDPATH="C:\Documents and Settings\Davide\Documenti\personali\pd-0.38-3.msw\pd"
+FANNSRC="C:\Documents and Settings\Davide\Documenti\personali\PD\fann-1.2.0\fann-1.2.0\src\include"
+FANNLIB="C:\Documents and Settings\Davide\Documenti\personali\PD\fann-1.2.0\fann-1.2.0\MSVC++\Release"
current: clean pd_nt distclean
-pd_nt: ann_som.dll ann_mlp.dll ann_td.dll ann.dll
-#pd_nt: ann.dll
+#pd_nt: ann_som.dll ann_mlp.dll ann_td.dll ann.dll
+pd_nt: ann.dll
.SUFFIXES: .dll
|