README
381 Bytes
[Installing jlibcpp]
Type:
"sudo make all install"
[Compilling tests]
For each module of jlibcpp, change to tests directory and type:
"make"
[Compiling applications]
## Makefile -- with pkgconfig -- begin ##
CFLAGS = `pkg-config --cflags jlibcpp`
LIBS = `pkg-config --libs jlibcpp`
all:
g++ <app.cpp> -o <app> $(CFLAGS) $(LIBS)
## Makefile -- with pkgconfig -- end ##