conv/many suite: convert (m)any seismic data format(s)
Makefile
Go to the documentation of this file.
1 # this is <Makefile>
2 # ----------------------------------------------------------------------------
3 #
4 # Copyright (c) 2003 by Thomas Forbriger (BFO Schiltach)
5 #
6 # convert from and to various seismic formats
7 #
8 # ----
9 # This program is free software; you can redistribute it and/or modify
10 # it under the terms of the GNU General Public License as published by
11 # the Free Software Foundation; either version 2 of the License, or
12 # (at your option) any later version.
13 #
14 # This program is distributed in the hope that it will be useful,
15 # but WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 # GNU General Public License for more details.
18 #
19 # You should have received a copy of the GNU General Public License
20 # along with this program; if not, write to the Free Software
21 # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
22 # ----
23 #
24 # conv/many suite: convert (m)any seismic data format(s)
25 # ======================================================
26 #
27 # A set of programs to read, analyze, and convert seismic data files
28 # in many different formats (all formats supported by libdatrwxx).
29 #
30 # See README for further details and installation hints.
31 #
32 # REVISIONS and CHANGES
33 # 16/09/2003 V1.0 Thomas Forbriger
34 # 29/03/2006 V1.1 provide package
35 # 05/12/2007 V1.2 use new regex module after migration to fenoglio
36 # removed DOS exe-targets
37 # 17/12/2007 V1.3 moved to gfortran and 64bit
38 # 06/10/2010 V1.4 start migration to SVN scheme
39 # - remove fallback
40 # - check variables
41 # - package creation is not yet configured
42 # - libboost_regex is hardwired now
43 # 19/03/2011 V1.5 added libseife to snapshot package and reordered
44 # libraries in package
45 # 13/02/2012 V1.6 any-type-tools now live in subdirectory many
46 # 25/03/2013 V1.7 detailed installation instructions
47 #
48 # ============================================================================
49 #
50 PROGRAMS=any2sff anyindex anyextract any2ascii any2any
51 
52 .PHONY: all
53 all: install doc
54 
55 .PHONY: install
56 install: $(addprefix $(LOCBINDIR)/,$(PROGRAMS))
57 $(LOCBINDIR)/%: %
58  mkdir -pv $(LOCBINDIR)
59  /bin/mv -fv $< $(LOCBINDIR)
60 
61 .PHONY: doc
62 doc: doxydoc
63 
64 .PHONY: allstatic
65 allstatic:
66  $(MAKE) install \
67  PROGRAMS="any2anystat anyindexstat anyextractstat any2asciistat"
68 
69 flist: README Makefile $(wildcard *.f *.cc *.txt) doxydoc.cfg \
70  $(wildcard sub/*.cc sub/*.h) COPYING
71  echo $^ | tr ' ' '\n' | sort > $@
72  echo '----' >> $@
73  echo $(TF_EDIT) | tr ' ' '\n' | sort >> $@
74 
75 .PHONY: edit
76 edit: flist; vim $<
77 
78 .PHONY: clean
79 clean:
80  -/bin/rm *.o *.bak *.o77 *.exe flist *.ps $(PROGRAMS) *.xxx *.d
81  -find . -name \*.bak | xargs --no-run-if-empty /bin/rm -v
82  -find . -name \*.d | xargs --no-run-if-empty /bin/rm -v
83 
84 # ============================================================================
85 #
86 CHECKVAR=$(if $($(1)),,$(error ERROR: missing variable $(1)))
87 CHECKVARS=$(foreach var,$(1),$(call CHECKVAR,$(var)))
88 #
89 $(call CHECKVARS,LOCINCLUDEDIR LOCLIBDIR)
90 
91 AR=ar
92 AS=as
93 RANLIB=ranlib
94 
95 FLAGS += $(MYFLAGS) $(STATIC)
96 CFLAGS += -O2
97 FFLAGS += -ff2c -ffixed-line-length-none
98 
99 CXXFLAGS += -Wall $(FLAGS)
100 LDFLAGS+=$(addprefix -L,$(LOCLIBDIR) $(subst :, ,$(SERVERLIBDIR)))
101 CPPFLAGS+=$(addprefix -I,$(LOCINCLUDEDIR) $(subst :, ,$(SERVERINCLUDEDIR))) \
102  $(FLAGS) -I sub
103 
104 #======================================================================
105 # dependencies
106 # ------------
107 #
108 # The compiler is used to create dependency files, which are included below.
109 
110 %.d: %.cc
111  $(SHELL) -ec '$(CXX) -M $(CPPFLAGS) $< \
112  | sed '\''s,\($(notdir $*)\)\.o[ :]*,$(dir $@)\1.o $@ : ,g'\'' \
113  > $@; \
114  [ -s $@ ] || rm -f $@'
115 
116 SRCFILES=$(wildcard *.cc sub/*.cc)
117 include $(patsubst %.cc,%.d,$(SRCFILES))
118 
119 #----------------------------------------------------------------------
120 
121 %.o: %.f
122  $(FC) $(FFLAGS) -c $< -o $@
123 
124 GAPANALYSISOBS=sub/completenessbins.o \
125  sub/fncompleteness.o \
126  sub/fngaps.o \
127  sub/fnprintgaps.o \
128  sub/fngnuplotplot.o \
129  sub/fnseriesofmissingsamples.o \
130  sub/structgapanalysis.o \
131  sub/structgapseries.o
132 
133 anyextract: %: %.o $(GAPANALYSISOBS)
134  $(CXX) -o $@ $^ -I$(LOCINCLUDEDIR) -ldatrwxx \
135  -lsffxx -ltime++ -lgsexx -laff -ltfxx -lboost_regex \
136  -L$(LOCLIBDIR) $(CXXFLAGS) $(FLAGS) $(STATIC) $(LDFLAGS)
137 anyextractstat: %stat: %.o $(GAPANALYSISOBS)
138  $(CXX) -o $@ $^ -I$(LOCINCLUDEDIR) -ldatrwxx -static \
139  -lsffxx -ltime++ -lgsexx -laff -ltfxx -lboost_regex \
140  -L$(LOCLIBDIR) $(CXXFLAGS) $(FLAGS) $(STATIC) $(LDFLAGS)
141 
142 any2any: %: %.o
143  $(CXX) -o $@ $^ -I$(LOCINCLUDEDIR) -ldatrwxx \
144  -lsffxx -ltime++ -lgsexx -laff -ltfxx \
145  -L$(LOCLIBDIR) $(CXXFLAGS) $(FLAGS) $(STATIC) $(LDFLAGS)
146 any2anystat: %stat: %.o
147  $(CXX) -o $@ $^ -I$(LOCINCLUDEDIR) -ldatrwxx \
148  -lsffxx -ltime++ -lgsexx -laff -ltfxx -static \
149  -L$(LOCLIBDIR) $(CXXFLAGS) $(FLAGS) $(STATIC) $(LDFLAGS)
150 
151 anyindex any2ascii any2sff: %: %.o
152  $(CXX) -o $@ $^ -I$(LOCINCLUDEDIR) -ldatrwxx \
153  -lsffxx -ltime++ -lgsexx -laff \
154  -ltfxx -L$(LOCLIBDIR) $(CXXFLAGS) $(FLAGS) $(LDFLAGS)
155 
156 any2asciistat any2sffstat anyindexstat: %stat: %.o
157  $(CXX) -o $@ $^ -I$(LOCINCLUDEDIR) -static -ldatrwxx \
158  -lsffxx -ltime++ -lgsexx -laff -ltfxx -lboost_regex \
159  -L$(LOCLIBDIR) $(CXXFLAGS) $(FLAGS) $(LDFLAGS)
160 
161 %.ps: %.cc
162  a2ps -1 -o $@ \
163  --center-title="$(shell ident $< | grep $< | tail -1 | tr '$$' ' ')" \
164  $<
165 %.psp: %.ps; gv $<; /bin/rm -fv $<
166 
167 #======================================================================
168 # documentation part
169 # ------------------
170 #
171 # targets commonly used:
172 # ----------------------
173 #
174 # make doxyclean removes all documentation
175 # make doxydoc creates doxygen documentation in the DOXYWWWPATH
176 # make doxyview creates doxygen documentation and launches netscape to
177 # browse in the documentation
178 # make doxyconf edit the doxygen configuration file
179 #
180 # If you launch "make doxydoc" the documentation will be written to
181 # DOXYWWWPATH (see below). This is meant to export the documentation through
182 # your homepage. The doxyfull directory is just a symbolic link to this
183 # directory.
184 #
185 
186 $(call CHECKVARS,TF_WWWBASEDIR TF_BROWSER)
187 
188 DOXYWWWPATH=$(TF_WWWBASEDIR)/convmany
189 
190 .PHONY: doxyclean doxyview doxydoc doxyconf
191 
192 doxyclean: ;/bin/rm -rfv $(DOXYWWWPATH)
193 
194 DOXYSRC=Makefile README $(wildcard *.cc *.c *.h *.f sub/*.cc sub/*.h) \
195  doxygen.txt
196 
197 # create doxygen intermediate configuration
198 PWD=$(shell env pwd)
199 doxydoc.xxx: doxydoc.cfg
200  sed 's,<OUTPUTDIRECTORY>,$(DOXYWWWPATH),g;s,<STRIPFROMPATH>,$(PWD),g' \
201  $< > $@
202 # create commented version of doxygen configuration
203 doxycomm.xxx: doxydoc.cfg
204  /bin/cp -vf $< $@; doxygen -u $@
205 
206 $(DOXYWWWPATH)/html/index.html: doxydoc.xxx $(DOXYSRC)
207  mkdir -vp $(DOXYWWWPATH)
208  doxygen $<
209 
210 doxydoc: $(DOXYWWWPATH)/html/index.html
211 
212 doxyview: $(DOXYWWWPATH)/html/index.html
213  $(TF_BROWSER) file:$< &
214 
215 #======================================================================
216 # create package
217 # --------------
218 # is delegated to Makefile.packages
219 ifdef TF_MAKEPKG
220 .PHONY: package
221 package: $(TF_MAKEPKG)
222  $(MAKE) -f $< \
223  PACKAGE=convmany \
224  PACKAGEEXPORT="trunk/src/conv/many:src" \
225  PACKAGETARGETS="src:all" \
226  PACKAGELIBS="-"
227 .PHONY: fullpackage
228 fullpackage: $(TF_MAKEPKG)
229  $(MAKE) -f $< \
230  PACKAGE=convmanywithlibs \
231  PACKAGEEXPORT="trunk/src/conv/many:src" \
232  PACKAGETARGETS="src:all" \
233  PACKAGELIBS="libtime:libaff:libgsexx:libsffxx:libdatrwxx:libtfxx"
234 endif
235 
236 # ----- END OF Makefile -----