version 1.1, 2001/05/20 07:48:19 |
version 1.4, 2003/01/15 00:04:02 |
|
|
/* $OpenXM$ */
|
/* $OpenXM: OpenXM/src/kan96xx/Kan/makeconf.c,v 1.3 2002/10/24 06:04:07 takayama Exp $ */
|
#include <stdio.h>
|
#include <stdio.h>
|
main() {
|
main() {
|
#if defined(__CYGWIN__)
|
#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@@@/ -L$(OpenXM_HOME)\\/lib -lgmp /\n");
|
#else
|
#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
|
#endif
|
}
|
}
|
|
|