The "photomolo" utility depends on the JPEG library by the Independent
JPEG Group.

To build and install the "photomolo" and "jpegcom" programs on Debian
GNU/Linux, you may use the following commands:

apt-get install libjpeg62-dev
make
make PREFIX=/usr/local install installman

To build the programs on other Unix-like systems:

# get ftp://ftp.uu.net/graphics/jpeg/jpegsrc.v6b.tar.gz
# unpack the libjpeg source code
gzip -dc jpegsrc.v6b.tar.gz | tar xf -
# compile libjpeg
cd jpeg-6b; ./configure; make; cd ..
# unpack the photomolo source code
gzip -dc photomolo-1.0.tar.gz | tar xf -
# compile photomolo and jpegcom
cd photomolo-1.0
make INCLUDES=-I../jpeg-6b LIBS=../jpeg-6b/libjpeg.a
make PREFIX=/usr/local install installman
