d38dedad68
+ raster and gdal input isn't tested. Not working currently... + *-input.so plugins created. Change loader in source or link plugin to correct place + use pkg-config uninstalled feature -> define project root to PKG_CONFIG_PATH to use mapnik without installation + added various library checks + don't install fonts + don't use included AGG -> check for a installed libagg + Added Makefile for c++ demo + don't build any python wrapper stuff -> this follows if all other building works + added Anjuta file -> not needed to build anything, but helps much if you use Anjuta
29 lines
492 B
Makefile
29 lines
492 B
Makefile
## Process this file with automake to produce Makefile.in
|
|
## Created by Anjuta
|
|
|
|
SUBDIRS = src \
|
|
agg\
|
|
plugins\
|
|
include
|
|
|
|
mapnikdocdir = ${prefix}/doc/mapnik
|
|
mapnikdoc_DATA = \
|
|
README\
|
|
COPYING\
|
|
AUTHORS\
|
|
ChangeLog\
|
|
INSTALL\
|
|
NEWS
|
|
|
|
EXTRA_DIST = $(mapnikdoc_DATA) \
|
|
$(fonts_DATA)\
|
|
$(includes_HEADERS)
|
|
|
|
# Copy all the spec files. Of cource, only one is actually used.
|
|
dist-hook:
|
|
for specfile in *.spec; do \
|
|
if test -f $$specfile; then \
|
|
cp -p $$specfile $(distdir); \
|
|
fi \
|
|
done
|
|
|