File: Makefile.am

package info (click to toggle)
libgeotiff-dfsg 1.4.2-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 2,656 kB
  • ctags: 922
  • sloc: sh: 11,166; ansic: 8,187; makefile: 123
file content (90 lines) | stat: -rw-r--r-- 2,545 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
SUBDIRS = libxtiff . bin man cmake

AUTOMAKE_OPTIONS = dist-zip subdir-objects
ACLOCAL_AMFLAGS = -I m4

include $(top_srcdir)/m4/doxygen.am

PROJ_CFLAGS=
if PROJ_IS_CONFIG
PROJ_CFLAGS += @PROJ_INC@ -DHAVE_LIBPROJ=1
endif

if PROJECTS_H_IS_CONFIG
PROJ_CFLAGS += -DHAVE_PROJECTS_H=1
endif

if TIFF_IS_CONFIG
TIFF_CFLAGS = @TIFF_INC@ -DHAVE_TIFF=1
endif

AM_CFLAGS = -I./libxtiff $(PROJ_CFLAGS) $(TIFF_CFLAGS) \
			-DCSV_DATA_DIR=\"$(datadir)/epsg_csv\"

csvdir = $(datadir)/epsg_csv

include_HEADERS =   geotiff.h \
                    geotiffio.h \
                    geovalues.h \
                    geonames.h \
                    geokeys.h \
                    geo_tiffp.h \
                    geo_keyp.h \
                    geo_normalize.h \
                    cpl_serv.h \
                    geo_simpletags.h \
                    epsg_datum.inc \
                    epsg_gcs.inc \
                    epsg_pm.inc \
                    epsg_units.inc \
                    geo_ctrans.inc \
                    epsg_ellipse.inc \
                    epsg_pcs.inc \
                    epsg_proj.inc \
                    epsg_vertcs.inc \
                    geokeys.inc \
                    geo_incode_defs.h

nodist_include_HEADERS = geo_config.h

libgeotiff_la_SOURCES = cpl_serv.c \
                        cpl_csv.c \
                        geo_extra.c \
                        geo_free.c \
                        geo_get.c \
                        geo_names.c \
                        geo_new.c \
                        geo_normalize.c \
                        geo_print.c \
                        geo_set.c \
                        geo_simpletags.c \
                        geo_tiffp.c \
                        geo_trans.c \
                        geo_write.c \
                        geo_strtod.c \
                        geotiff_proj4.c

libgeotiff_la_LDFLAGS = -version-info 3:2:1

libgeotiff_la_LIBADD = libxtiff/libxtiff.la

lib_LTLIBRARIES = libgeotiff.la

EXTRA_DIST =    autogen.sh \
                makefile.vc \
                geo_config.h.vc \
                README \
                README.WIN \
                README_BIN \
                LICENSE \
                INSTALL \
                CMakeLists.txt \
                libxtiff/CMakeLists.txt \
                bin/CMakeLists.txt \
                docs/Doxyfile \
                docs/geotifcp.html \
                docs/index.dox \
                docs/listgeo.html \
                docs/manual.txt

MOSTLYCLEANFILES = $(DX_CLEANFILES)