forked from OSGeo/gdal
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGNUmakefile
206 lines (157 loc) · 4.56 KB
/
GNUmakefile
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
GDAL_ROOT = .
WEB_DIR = $(HOME)/www/gdal
include GDALmake.opt
GDAL_OBJ = $(GDAL_ROOT)/frmts/o/*.o \
$(GDAL_ROOT)/gcore/*.o \
$(GDAL_ROOT)/port/*.o \
$(GDAL_ROOT)/alg/*.o
ifeq ($(OGR_ENABLED),yes)
GDAL_OBJ += $(GDAL_ROOT)/ogr/ogrsf_frmts/o/*.o
endif
include ./ogr/file.lst
GDAL_OBJ += $(addprefix ./ogr/,$(OBJ))
LIBGDAL-yes := $(GDAL_LIB)
LIBGDAL-$(HAVE_LD_SHARED) += $(GDAL_SLIB)
# override if we are using libtool
LIBGDAL-$(HAVE_LIBTOOL) := $(LIBGDAL)
default: lib-target py-target apps-target
lib-target: check-lib;
force-lib:
$(AR) r $(GDAL_LIB) $(GDAL_OBJ)
$(RANLIB) $(GDAL_LIB)
$(LD_SHARED) $(GDAL_SLIB_SONAME) $(GDAL_OBJ) $(GDAL_LIBS) $(LIBS) \
-o $(GDAL_SLIB)
$(GDAL_LIB): $(GDAL_OBJ) GDALmake.opt
rm -f libgdal.a
$(AR) r $(GDAL_LIB) $(GDAL_OBJ)
$(RANLIB) $(GDAL_LIB)
$(GDAL_SLIB): $(GDAL_OBJ)
$(LD_SHARED) $(GDAL_SLIB_SONAME) $(GDAL_OBJ) $(GDAL_LIBS) $(LIBS) \
-o $(GDAL_SLIB)
$(LIBGDAL): $(GDAL_OBJ:.o=.lo)
$(LD) $(LIBS) -o $@ $(GDAL_OBJ:.o=.lo) \
-rpath $(INST_LIB) \
-no-undefined \
-version-info $(LIBGDAL_CURRENT):$(LIBGDAL_REVISION):$(LIBGDAL_AGE)
check-lib: port-target core-target frmts-target ogr-target
$(MAKE) $(LIBGDAL-yes)
port-target:
(cd port; $(MAKE))
ogr-target:
(cd ogr; $(MAKE) lib )
core-target:
(cd gcore; $(MAKE))
(cd alg; $(MAKE))
frmts-target:
(cd frmts; $(MAKE))
ogr-all:
(cd ogr; $(MAKE) all)
apps-target: lib-target ogr-apps
(cd apps; $(MAKE))
ogr-apps: lib-target
(cd ogr; $(MAKE) apps)
#
# We only make python a default target if we think python is installed.
#
ifeq ($(PYTHON),no)
py-target: ;
else
py-target: py-module;
endif
swig-target:
ifneq ($(BINDINGS),)
(cd swig; $(MAKE) build)
endif
clean: lclean
(cd port; $(MAKE) clean)
(cd ogr; $(MAKE) clean)
(cd gcore; $(MAKE) clean)
(cd frmts; $(MAKE) clean)
(cd alg; $(MAKE) clean)
(cd apps; $(MAKE) clean)
ifneq ($(BINDINGS),)
(cd swig; $(MAKE) clean)
endif
(cd pymod; $(MAKE) clean)
py-module: lib-target
(cd pymod; $(MAKE))
lclean:
rm -f *.a *.so config.log config.cache html/*.*
$(RM) *.la
distclean: dist-clean
dist-clean: clean
rm -f GDALmake.opt port/cpl_config.h config.cache config.status
rm -f libtool
rm -rf autom4te.cache
config: configure
./configure
configure: configure.in aclocal.m4
autoconf
GDALmake.opt: GDALmake.opt.in config.status
./config.status
docs:
(cd ogr; $(MAKE) docs)
(cd html; rm -f *.*)
# Generate translated docs. Should go first, because index.html page should
# be overwritten with the main one later
doxygen -w html html/header.html html/footer.html html/stylesheet.css
sed -e 's,iso-8859-1,koi8-r,g' html/header.html > html/header_ru.html
(cat Doxyfile ; echo "HTML_HEADER=html/header_ru.html"; echo "INPUT=doc/ru"; echo "OUTPUT_LANGUAGE=Russian") | doxygen -
# Generate HTML docs
doxygen Doxyfile
# Generate man pages
(cat Doxyfile ; echo "ENABLED_SECTIONS=man"; echo "INPUT=doc ogr"; echo "FILE_PATTERNS=*utilities.dox"; echo "GENERATE_HTML=NO"; echo "GENERATE_MAN=YES") | doxygen -
cp data/gdalicon.png html
cp doc/ERMapperlogo_small.gif html
cp frmts/*.html frmts/*/frmt_*.html html
all: default ogr-all
install-docs:
(cd ogr; $(MAKE) install-docs)
$(INSTALL_DIR) $(INST_DOCS)/gdal
cp html/*.* $(INST_DOCS)/gdal
web-update: docs
cp html/*.* $(WEB_DIR)
install: default install-actions
install-actions: install-lib
$(INSTALL_DIR) $(INST_BIN)
$(INSTALL_DIR) $(INST_DATA)
$(INSTALL_DIR) $(INST_INCLUDE)
(cd port; $(MAKE) install)
(cd gcore; $(MAKE) install)
(cd frmts; $(MAKE) install)
(cd alg; $(MAKE) install)
(cd ogr; $(MAKE) install)
(cd apps; $(MAKE) install)
(cd man; $(MAKE) install)
ifneq ($(PYTHON),no)
(cd pymod; $(MAKE) install)
endif
ifneq ($(BINDINGS),)
(cd swig; $(MAKE) install)
endif
for f in data/*.* ; do $(INSTALL_DATA) $$f $(INST_DATA) ; done
$(LIBTOOL_FINISH) $(INST_LIB)
ifeq ($(HAVE_LIBTOOL),yes)
install-lib:
$(INSTALL_DIR) $(INST_LIB)
for f in $(LIBGDAL-yes) ; do $(INSTALL_LIB) $$f $(INST_LIB) ; done
else
ifeq ($(HAVE_LD_SHARED),yes)
GDAL_VER_MAJOR = $(firstword $(subst ., ,$(GDAL_VER)))
GDAL_SLIB_B = $(notdir $(GDAL_SLIB))
install-lib:
$(INSTALL_DIR) $(INST_LIB)
rm -f $(INST_LIB)/$(GDAL_SLIB_B)
rm -f $(INST_LIB)/$(GDAL_SLIB_B).$(GDAL_VER_MAJOR)
rm -f $(INST_LIB)/$(GDAL_SLIB_B).$(GDAL_VER)
$(INSTALL_LIB) $(GDAL_SLIB) $(INST_LIB)/$(GDAL_SLIB_B).$(GDAL_VER)
(cd $(INST_LIB) ; \
ln -s $(GDAL_SLIB_B).$(GDAL_VER_MAJOR) $(GDAL_SLIB_B))
(cd $(INST_LIB) ; \
ln -s $(GDAL_SLIB_B).$(GDAL_VER) $(GDAL_SLIB_B).$(GDAL_VER_MAJOR))
else
install-lib:
$(INSTALL_DIR) $(INST_LIB)
$(INSTALL_LIB) $(GDAL_LIB) $(INST_LIB)
endif # HAVE_LD_SHARED=no
endif # HAVE_LIBTOOL=no