|
Revision 537, 474 bytes
(checked in by andreas, 16 months ago)
|
|
- added option to build included libagg as static library
|
| Line | |
|---|
| 1 | ## Process this file with automake to produce Makefile.in |
|---|
| 2 | ## Created by Anjuta |
|---|
| 3 | |
|---|
| 4 | SUBDIRS = src \ |
|---|
| 5 | agg\ |
|---|
| 6 | plugins\ |
|---|
| 7 | include |
|---|
| 8 | |
|---|
| 9 | |
|---|
| 10 | mapnikdocdir = ${prefix}/doc/mapnik |
|---|
| 11 | mapnikdoc_DATA = \ |
|---|
| 12 | README\ |
|---|
| 13 | COPYING\ |
|---|
| 14 | AUTHORS\ |
|---|
| 15 | INSTALL |
|---|
| 16 | |
|---|
| 17 | EXTRA_DIST = $(mapnikdoc_DATA) \ |
|---|
| 18 | $(fonts_DATA)\ |
|---|
| 19 | $(includes_HEADERS) |
|---|
| 20 | |
|---|
| 21 | # Copy all the spec files. Of cource, only one is actually used. |
|---|
| 22 | dist-hook: |
|---|
| 23 | for specfile in *.spec; do \ |
|---|
| 24 | if test -f $$specfile; then \ |
|---|
| 25 | cp -p $$specfile $(distdir); \ |
|---|
| 26 | fi \ |
|---|
| 27 | done |
|---|