PNG IHDR ; IDATxܻn0K )(pA7LeG{ §㻢|ذaÆ 6lذaÆ 6lذaÆ 6lom$^yذag5 bÆ 6lذaÆ 6lذa{ 6lذaÆ `}HFkm,mӪôô!x|'ܢ˟;E:9&ᶒ}{v]n&6 h_tڠ͵-ҫZ;Z$.Pkž)!o>}leQfJTu іچ\X=8Rن4`Vwl>nG^is"ms$ui?wbs[m6K4O.4%/bC%tMז -lG6mrz2s%9s@-k9=)kB5\+͂ZsٲRn~GRCwIcIn7jJhۛNCS|j08yiHKֶۛkɈ+;SzL /F*\Ԕ#"5m2[S=gnaPeғL lذaÆ 6l^ḵaÆ 6lذaÆ 6lذa; _ذaÆ 6lذaÆ 6lذaÆ R IENDB`
neon-config — script providing information about installed copy of neon library
neon-config
[--prefix
] [[--cflags
] | [--libs
] | [--la-file
] | [--support
feature
] | [--help
] | [--version
]]
The neon-config script provides
information about an installed copy of the neon library. The
--cflags
and --libs
options instruct
how to compile and link an application against the library; the
--version
and --support
options can
help determine whether the library meets the applications
requirements.
| Print the flags which should be passed to the C compiler when compiling object files, when the object files use neon header files. |
| Print the flags which should be passed to the linker when linking an application which uses the neon library |
| Print the location of the libtool library
script, libneon.la , which can be used to link against
neon by applications using libtool. |
| Print the version of the library |
| If dir is given; relocate output of
--cflags and --libs as if neon was
installed in given prefix directory. Otherwise, print the
installation prefix of the library. |
| The script exits with success if
feature is supported by the
library. |
| Print help message; includes list of known features and whether they are supported or not. |
Below is a Makefile fragment which could be used to
build an application against an installed neon library, when the
neon-config script can be found in
$PATH
.
CFLAGS = `neon-config --cflags` LIBS = `neon-config --libs` OBJECTS = myapp.o TARGET = myapp $(TARGET): $(OBJECTS) $(CC) $(LDFLAGS) -o $(TARGET) $(OBJECTS) $(LIBS) myapp.o: myapp.c $(CC) $(CFLAGS) -c myapp.c -o myapp.o