diff options
author | Tim Blechmann <timblech@users.sourceforge.net> | 2004-08-09 10:52:18 +0000 |
---|---|---|
committer | Tim Blechmann <timblech@users.sourceforge.net> | 2004-08-09 10:52:18 +0000 |
commit | c4987379ee1e72cc60ee772642d5bd0bafc1f76a (patch) | |
tree | aebb4153c5048ce2b4c9bd307641b8d6e91073d5 | |
parent | ac4fe4a3da623f9ec1dbb36079da0a8282388176 (diff) |
*** empty log message ***
svn path=/trunk/externals/k_cext/; revision=1922
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | k_cext_win.c | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -11,7 +11,7 @@ pd_nt: $(NAME).dll .SUFFIXES: .dll -PDNTCFLAGS = /W3 /DNT /DPD /nologo /DINCLUDEPATH=\"D:\\sourcescvs\\pd\" +PDNTCFLAGS = /W3 /WX /DNT /DPD /nologo /DINCLUDEPATH=\"D:\\sourcescvs\\pd\" PDNTINCLUDE = /I. /ID:\sourcescvs\pd\src PDNTLIB = libc.lib oldnames.lib kernel32.lib "C:\Pure Data\bin\pd.lib" diff --git a/k_cext_win.c b/k_cext_win.c index f48a8ff..0ed4e15 100644 --- a/k_cext_win.c +++ b/k_cext_win.c @@ -86,7 +86,7 @@ void k_sys_writeincludes(FILE *file){ } void k_sys_makecompilestring(char *to,char *name,char *funcname){ - sprintf(to,"cl %s " INCLUDEPATH "\\bin\\pd.lib " INCLUDEPATH "\\bin\\k_cext.lib /LD /Gd /GD /Ox /DNT /link /export:%s", + sprintf(to,"cl %s " INCLUDEPATH "\\bin\\pd.lib " INCLUDEPATH "\\extra\\k_cext.lib /LD /Gd /GD /Ox /DNT /link /export:%s", name, funcname); } |