=================================================================== RCS file: /home/cvs/OpenXM/src/kan96xx/Kan/makeconf.c,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- OpenXM/src/kan96xx/Kan/makeconf.c 2002/10/24 06:04:07 1.3 +++ OpenXM/src/kan96xx/Kan/makeconf.c 2003/01/15 00:04:02 1.4 @@ -1,12 +1,12 @@ -/* $OpenXM: OpenXM/src/kan96xx/Kan/makeconf.c,v 1.2 2002/10/24 05:53:37 takayama Exp $ */ +/* $OpenXM: OpenXM/src/kan96xx/Kan/makeconf.c,v 1.3 2002/10/24 06:04:07 takayama Exp $ */ #include main() { #if defined(__CYGWIN__) - printf("s/@@@LIBGMP@@@/$(OpenXM_HOME)\\/lib\\/libgmp.a/\n"); + printf("s/@@@LIBGMP@@@/ -L$(OpenXM_HOME)\\/lib -lgmp /\n"); #elif defined(sun) - printf("s/@@@LIBGMP@@@/$(OpenXM_HOME)\\/lib\\/libgmp.a -L $(OpenXM_HOME)\\/lib/\n"); + printf("s/@@@LIBGMP@@@/ -L$(OpenXM_HOME)\\/lib -lgmp /\n"); #else - printf("s/@@@LIBGMP@@@/$(OpenXM_HOME)\\/lib\\/libgmp.so -Wl,--rpath -Wl,$(OpenXM_HOME)\\/lib/\n"); + printf("s/@@@LIBGMP@@@/ -L$(OpenXM_HOME)\\/lib -lgmp -Wl,--rpath -Wl,$(OpenXM_HOME)\\/lib/\n"); #endif }