Je voudrais ./configure
pour établir un lien avec une bibliothèque et quelques fichiers d'inclusion. Ma bibliothèque est stockée dans /home/foo/sw/lib/
et mes fichiers sont stockés dans /home/foo/sw/include
.
./configure --help
jette ce qui suit :
Quelques variables d'environnement influentes :
CC C compiler command
CFLAGS C compiler flags
LDFLAGS linker flags, e.g. -L<lib dir> if you have libraries in a
nonstandard directory <lib dir>
LIBS libraries to pass to the linker, e.g. -l<library>
CPPFLAGS (Objective) C/C++ preprocessor flags, e.g. -I<include dir> if
you have headers in a nonstandard directory <include dir>
CPP C preprocessor
J'ai essayé diverses combinaisons :
./configure --prefix=/home/foo/sw -I</home/foo/sw/include> -L</home/foo/sw/lib/>
./configure --prefix=/home/foo/sw -I=/home/foo/sw/include -L=/home/foo/sw/lib/
./configure --prefix=/home/foo/sw -I/home/foo/sw/include -L/home/foo/sw/lib/
etc..
Mais je n'arrive pas à trouver la bonne syntaxe. Si quelqu'un peut m'aider, ce serait très apprécié. MERCI !