J'aimerais créer un ./configure
lien vers une bibliothèque et des 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 à comprendre la syntaxe. Si quelqu'un pouvait m'aider, ce serait grandement apprécié. MERCI!