diff options
Diffstat (limited to 'src')
-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
|