forked from OSGeo/gdal
-
Notifications
You must be signed in to change notification settings - Fork 1
/
GNUmakefile
187 lines (140 loc) · 3.82 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
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)
$(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
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)
(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 *.*)
doxygen
doxygen Doxyfile.man
cp data/gdalicon.png html
cp doc/ERMapperlogo_small.gif html
cp frmts/*.html frmts/*/frmt_*.html html
python doc/mkindex.py
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
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