1 arta 1.79 #***********************************************************************************************#
2 #
3 # INITIALIZATION
4 #
5
|
6 arta 1.1 VPATH = $(SRCDIR)
7 STATIC =
|
8 arta 1.72 DBMS = POSTGRESQL
|
9 arta 1.79 CUSTOMSW =
|
10 arta 1.1
|
11 arta 1.62 # Run a script to determine the machine on which make is being run. This
12 # MAY return a machine type, if the host found falls into one of several
13 # categories (like dbserver).
|
14 arta 1.80 MACHTYPE = $(shell hostname)
|
15 arta 1.62
|
16 arta 1.58 # If MACH was set when the make command was issued (eg., make MACH='N02'), then
|
17 arta 1.80 # use its value for the output/obj directory and use the drmsparams.mk variables
|
18 arta 1.58 # relevant to its value. Otherwise, use $(JSOC_MACHINE).
|
19 arta 1.57 ifeq ($(MACH),)
20 MACH = $(JSOC_MACHINE)
21 endif
22
|
23 arta 1.46 #***********************************************************************************************#
24 #
25 # COMPILER SELECTION
26 #
|
27 rick 1.29 COMPILER = icc
|
28 arta 1.46 FCOMPILER = ifort
|
29 kehcheng 1.78 MPICOMPILER = $(MPI_PATH)/mpicc
30 MPIFCOMPILER = $(MPI_PATH)/mpif90
|
31 arta 1.46
|
32 arta 1.80 # can set through drmsparams.mk or through environment
|
33 arta 1.47 ifneq ($(JSOC_COMPILER),)
34 COMPILER = $(JSOC_COMPILER)
|
35 arta 1.45 endif
|
36 arta 1.46
|
37 arta 1.47 ifneq ($(JSOC_FCOMPILER),)
38 FCOMPILER = $(JSOC_FCOMPILER)
|
39 arta 1.45 endif
|
40 arta 1.46 #***********************************************************************************************#
|
41 arta 1.1
|
42 arta 1.65 #***********************************************************************************************#
43 # This optional file has custom definitions created by the configure script.
|
44 arta 1.80 # Do this after compiler selection since drmsparams.mk might use $COMPILER or $FCOMPILER.
45 # drmsparams.mk might also set compiler (through moreconfigure.pl)
46 -include $(SRCDIR)/$(LOCALIZATIONDIR)/drmsparams.mk
|
47 arta 1.65 #***********************************************************************************************#
|
48 arta 1.46
49 #***********************************************************************************************#
50 #
51 # DEBUGGING
52 #
|
53 arta 1.1 # Check for debug vs. release build - release is default.
|
54 arta 1.30 # To do a debug build, either set the environment variable JSOC_DEBUG to 1, OR
55 # modify the following line so that DEBUG = 1. The environment variable takes precedence.
|
56 arta 1.46 #
|
57 arta 1.30 DEBUG = 0
|
58 arta 1.1
59 ifdef JSOC_DEBUG
60 ifeq ($(JSOC_DEBUG), 1)
61 DEBUG = 1
62 else
63 DEBUG = 0
64 endif
65 endif
|
66 arta 1.46 #***********************************************************************************************#
|
67 arta 1.1
|
68 arta 1.46
69 #***********************************************************************************************#
70 #
71 # WARNINGS
72 #
|
73 arta 1.52 # Warnings ARE displayed, by default, for a release build.
|
74 arta 1.46 #
|
75 arta 1.52 WARN = 1
|
76 arta 1.1
|
77 rick 1.29 # Builder can request warnings via environment variable (setenv JSOC_WARN 1).
78 # The environment variable takes precedence.
|
79 arta 1.1 ifdef JSOC_WARN
80 ifeq ($(JSOC_WARN), 1)
81 WARN = 1
82 else
83 WARN = 0
84 endif
85 endif
86
|
87 arta 1.53 ICC_WARNMORE =
88 ifdef JSOC_WARNICC
89 ifeq ($(COMPILER), icc)
90 ICC_WARNMORE = $(JSOC_WARNICC)
91 endif
92 endif
93
|
94 arta 1.46 #***********************************************************************************************#
|
95 arta 1.1
96
|
97 arta 1.39 #***********************************************************************************************#
98 #
|
99 arta 1.46 # THIRD-PARTY LIBRARIES
100 #
|
101 arta 1.39 # This section contains make variables that hold the paths to and names of third-party libraries.
102 # Variables that end in 'H' contain the -I link flags that contain the include paths
103 # for the library headers, variables that end in 'L' contain the -L link flags that
104 # contain the paths to the library binaries, and variables
105 # that end in "LIBS" contain the full link cmd (the -L flag plus the -l flag)
106 #
|
107 arta 1.24
|
108 arta 1.56 # PostgreSQL
109 PGH = -I$(POSTGRES_INCS)
|
110 arta 1.87
111 # For use of dynamic library
|
112 arta 1.88 PGL = -L$(POSTGRES_LIBS)
|
113 arta 1.87 PGLIBS = $(POSTGRES_LIBS)/lib$(POSTGRES_LIB).so
|
114 arta 1.56
115 # CFITSIO
116 CFITSIOH = -I$(CFITSIO_INCS)
117 CFITSIOL = -L$(CFITSIO_LIBS)
118 CFITSIOLIBNAME = $(CFITSIO_LIB)
|
119 arta 1.87 CFITSIOLIBS = $(CFITSIOL) -l$(CFITSIOLIBNAME)
|
120 arta 1.56
|
121 kehcheng 1.78 # GSL
122 GSLH = -I$(GSL_INCS)
123 GSLL = -L$(GSL_LIBS)
124 GSLLIBS = $(GSLL) -lgsl
125
126 # FFTW
127 FFTWH = -I$(FFTW_INCS)
128 FFTWL = -L$(FFTW_LIBS)
129 FFTW3LIBS = $(FFTWL) -lfftw3
130 FFTW3FLIBS = $(FFTWL) -lfftw3f
131
|
132 arta 1.81 # TAR
133 LIBTARH = -I$(TAR_INCS)
134 LIBTARL = -L$(TAR_LIBS) -ltar
135
|
136 arta 1.83 # Python
137 LIBPYH = -I$(PY_INCS)
138 LIBPYL = -L$(PY_LIBS) -l$(PY_LIB)
139 PYTHONHOME = "\"$(PY_HOME)\""
140
|
141 arta 1.39 #***********************************************************************************************#
142
|
143 arta 1.1
|
144 arta 1.46 #***********************************************************************************************#
145 #
146 # CUSTOM BUILDS
147 #
|
148 arta 1.31 # Compilation define customizations (eg., for remote DRMS builds)
149 ifneq ($(DRMS_DEFAULT_RETENTION),)
150 # CUSTOMSW = $(CUSTOMSW) -DDRMS_DEFAULT_RETENTION="\"$(DRMS_DEFAULT_RETENTION)\""
151 CUSTOMSW := $(CUSTOMSW) -DDRMS_DEFAULT_RETENTION=$(DRMS_DEFAULT_RETENTION)
152 endif
153
|
154 arta 1.80 # Due to legacy code, the name __LOCALIZED_DEFS__ must be used for NetDRMS builds.
155 # Despite the name, this macro has nothing to do with localized definitions. It means
156 # "not Stanford JSOC-SDP" (it essentially means NetDRMS). So, if __LOCALIZED_DEFS__ is set, then
157 # the binaries were built for use outside of Stanford.
158 # For future use, we also define the NETDRMS_BUILD as a synonym, but with a more appropriate name.
159 # __LOCALIZED_DEFS__ is deprecated and should not be used in new code.
160 ifeq ($(BUILD_TYPE),NETDRMS)
161 CUSTOMSW := $(CUSTOMSW) -DNETDRMS_BUILD -D__LOCALIZED_DEFS__
162 endif
163
164 # Stanford builds are marked by the JSOC_SDP_BUILD macro.
165 ifeq ($(BUILD_TYPE),JSOC_SDP)
166 CUSTOMSW := $(CUSTOMSW) -DJSOC_SDP_BUILD
|
167 arta 1.36 endif
168
|
169 arta 1.1 #
|
170 arta 1.46 #***********************************************************************************************#
|
171 arta 1.1
|
172 arta 1.57 #***********************************************************************************************#
173 #
174 # Global flags
175 #
176 # All modules must be able to find libdsds.so. The define DRMS_LIBDIR specifies the path to
177 # all libraries.
178
|
179 arta 1.74 GLOBALSW = -DDRMS_ARCH="\"$(MACH)\""
|
180 arta 1.57 #
181 #***********************************************************************************************#
|
182 arta 1.1
|
183 arta 1.46 #***********************************************************************************************#
184 #
185 # WARNINGS
186 #
|
187 arta 1.52 # NO LONGER USED - Disable several warnings/remarks when compiling with icc - icc's Wall is a bit picky, it
|
188 arta 1.1 # complains about extern declarations in .c files.
189 # 1418 (remark) - external function definition with no prior declaration
190 # 1419 (warning) - external declaration in primary source file
191 # 310 (remark) - old style function declaration (pre-ANSI)
|
192 arta 1.52 # 279 ?
|
193 arta 1.1 # 981 (remark) - operands are evaluted in unspecified order
194
|
195 arta 1.51 # list of warnings to turn into errors
196 ICC_WARNTOERR = -we266
197
|
198 arta 1.1 ifeq ($(WARN), 1)
199 # Show warnings (always true for a debug build).
|
200 arta 1.55 ICC_WARN = $(ICC_WARNMORE)
201 GCC_WARN = -Wno-comment
|
202 arta 1.46 FCOMPILER_WARN =
|
203 arta 1.1 else
204 # Don't show warnings.
|
205 arta 1.51 ICC_WARN = -w0 -vec-report0 -Wno-comment $(ICC_WARNTOERR)
|
206 arta 1.1 GCC_WARN = -Wno-comment
|
207 arta 1.46 ifeq ($(FCOMPILER), ifort)
208 FCOMPILER_WARN = -vec-report0
209 else
210 FCOMPILER_WARN =
211 endif
|
212 arta 1.1 endif
|
213 arta 1.51
|
214 arta 1.46 #***********************************************************************************************#
215
216
217 #***********************************************************************************************#
218 #
219 # GLOBAL LINK FLAGS
220 #
221 # Link flags for all targets
222 #
|
223 arta 1.86 LL_ALL = $(SYSLIBS) -lcurl
|
224 arta 1.88 GCC_LF_ALL = $(STATIC) -Wl,--copy-dt-needed-entries
225 ICC_LF_ALL = -diag-disable 10237 $(STATIC) -openmp -static-intel -Wl,-export-dynamic -Wl,--copy-dt-needed-entries
|
226 arta 1.46
227 # Fortran global LINK flags
|
228 arta 1.75 ifeq ($(FCOMPILER), ifort)
|
229 kehcheng 1.78 F_LF_ALL = -diag-disable 10237 -nofor-main -openmp -static-intel -Wl,-export-dynamic
|
230 arta 1.75 endif
|
231 arta 1.46 #***********************************************************************************************#
232
233 #***********************************************************************************************#
234 #
235 # GLOBAL COMPILE FLAGS
236 #
237 GCC_CF_GCCCOMP = -DGCCCOMP
|
238 kehcheng 1.60 ICC_CF_ICCCOMP = -DICCCOMP -openmp
|
239 arta 1.1
|
240 arta 1.7 # can't figure out how to get stupid make to do if/else if/else
|
241 arta 1.1 ifeq ($(DEBUG), 0)
|
242 arta 1.84 GCC_CF_ALL = -I$(SRCDIR)/base/include -std=gnu99 -O2 $(GCC_WARN) $(GCC_CF_GCCCOMP) $(CUSTOMSW) $(GLOBALSW) -DNDEBUG
|
243 arta 1.7
|
244 arta 1.1 ifeq ($(JSOC_MACHINE), linux_x86_64)
|
245 arta 1.84 ICC_CF_ALL = -I$(SRCDIR)/base/include -std=c99 -D_GNU_SOURCE $(ICC_WARN) $(ICC_CF_ICCCOMP) $(CUSTOMSW) $(GLOBALSW) -DNDEBUG
246 GCC_CF_ALL = -I$(SRCDIR)/base/include -std=gnu99 -O2 -march=opteron $(GCC_WARN) $(GCC_CF_GCCCOMP) $(CUSTOMSW) $(GLOBALSW)
|
247 arta 1.7 endif
248
|
249 kehcheng 1.78 ifeq ($(JSOC_MACHINE), linux_avx)
|
250 arta 1.84 ICC_CF_ALL = -xavx -I$(SRCDIR)/base/include -std=c99 -D_GNU_SOURCE $(ICC_WARN) $(ICC_CF_ICCCOMP) $(CUSTOMSW) $(GLOBALSW) -DNDEBUG
|
251 kehcheng 1.78 endif
252
|
253 arta 1.7 ifeq ($(JSOC_MACHINE), linux_ia64)
|
254 arta 1.84 ICC_CF_ALL = -I$(SRCDIR)/base/include -std=c99 -D_GNU_SOURCE $(ICC_WARN) $(ICC_CF_ICCCOMP) $(CUSTOMSW) $(GLOBALSW) -DNDEBUG
|
255 arta 1.7 endif
256
257 ifeq ($(JSOC_MACHINE), linux_ia32)
|
258 arta 1.84 GCC_CF_ALL = -I$(SRCDIR)/base/include -std=gnu99 -O2 -march=i686 $(GCC_WARN) $(GCC_CF_GCCCOMP) $(CUSTOMSW) $(GLOBALSW) -DNDEBUG
|
259 arta 1.1 endif
260
261 else
|
262 arta 1.46 # -g tells the icc and gcc compilers to generate full debugging information
|
263 arta 1.84 GCC_CF_ALL = -I$(SRCDIR)/base/include -std=gnu99 -g $(GCC_WARN) $(GCC_CF_GCCCOMP) $(CUSTOMSW) $(GLOBALSW)
264 ICC_CF_ALL = -I$(SRCDIR)/base/include -std=c99 -D_GNU_SOURCE -g $(ICC_WARN) $(ICC_CF_ICCCOMP) $(CUSTOMSW) $(GLOBALSW)
|
265 arta 1.46 endif
|
266 arta 1.1
|
267 arta 1.46 # Fortran global COMPILE flags
|
268 kehcheng 1.78 ifeq ($(JSOC_MACHINE), linux_avx)
269 ifeq ($(FCOMPILER), ifort)
270 F_CF_ALL := -xavx -openmp
271 endif
272 endif
273
|
274 arta 1.46 ifeq ($(JSOC_MACHINE), linux_x86_64)
275 ifeq ($(FCOMPILER), ifort)
|
276 kehcheng 1.60 F_CF_ALL := -openmp
|
277 arta 1.46 endif
|
278 arta 1.1 endif
279
|
280 arta 1.46 # Other compiler-specific Fortran COMPILE flags
281 ifeq ($(FCOMPILER), ifort)
|
282 arta 1.49 FCFLAGS_INIT := -ftrapuv
|
283 arta 1.46 else
284 # must be gfortran
|
285 arta 1.49 FCFLAGS_INIT :=
|
286 arta 1.46 endif
|
287 arta 1.1
288 ifeq ($(DEBUG), 0)
|
289 arta 1.46 # -xW optimizes ifort compilation for Pentium 4
290 # -ftrapuv initializes stack local variables to an unusual value to aid error detection.
|
291 arta 1.61 F_CF_ALL := $(F_CF_ALL) $(FCOMPILER_WARN)
|
292 arta 1.1 else
|
293 arta 1.49 F_CF_ALL := $(F_CF_ALL) -g $(FCFLAGS_INIT) $(FCOMPILER_WARN)
|
294 arta 1.1 endif
|
295 arta 1.46 #***********************************************************************************************#
296
|
297 arta 1.1
|
298 arta 1.46 #***********************************************************************************************#
299 #
300 # BUILD TOOLS
|
301 arta 1.1 #
302 # The C compiler named here must output full (header) dependencies in $(@).d.
303 # It may be necessary to create a script similar to ccd-gcc for your compiler.
304 #
305 GCC_CMPLR = $(SRCDIR)/build/ccd-gcc
306 ICC_CMPLR = $(SRCDIR)/build/ccd-icc
307 ARCHIVE = ar crus $@ $^
308
309 ECPG = ecpg -o $@ -c $<
|
310 karen 1.17 SWIG = swig -perl5 -o $@ $<
|
311 arta 1.1
312 GCC_COMP = $(GCC_CMPLR) $(GCC_CF_ALL) $(CF_TGT) -o $@ -c $<
313 ICC_COMP = $(ICC_CMPLR) $(ICC_CF_ALL) $(CF_TGT) -o $@ -c $<
314
315 GCC_LINK = $(GCC_CMPLR) $(GCC_LF_ALL) $(LF_TGT) -o $@ $^ $(LL_TGT) $(LL_ALL)
316 ICC_LINK = $(ICC_CMPLR) $(ICC_LF_ALL) $(LF_TGT) -o $@ $^ $(LL_TGT) $(LL_ALL)
317
318 GCC_COMPLINK = $(GCC_CMPLR) $(GCC_CF_ALL) $(CF_TGT) $(GCC_LF_ALL) $(LF_TGT) -o $@ $< $(LL_TGT) $(LL_ALL)
319 ICC_COMPLINK = $(ICC_CMPLR) $(GCC_CF_ALL) $(CF_TGT) $(ICC_LF_ALL) $(LF_TGT) -o $@ $< $(LL_TGT) $(LL_ALL)
320
321 ifneq ($(COMPILER), icc)
322 COMP = $(GCC_COMP)
323 LINK = $(GCC_LINK)
324 COMPLINK = $(GCC_COMPLINK)
325 else
326 COMP = $(ICC_COMP)
327 LINK = $(ICC_LINK)
328 COMPLINK = $(ICC_COMPLINK)
329 endif
330
|
331 arta 1.46 FCOMP = $(FCOMPILER) $(F_CF_ALL) $(FF_TGT) -o $@ -c $<
332 FLINK = $(FCOMPILER) $(F_LF_ALL) $(LF_TGT) -o $@ $^ $(LL_TGT) $(LL_ALL)
|
333 arta 1.1
|
334 arta 1.58 SLBIN = ln -sf ../../_$(MACH)/$@ ../bin/$(MACH)/
335 SLLIB = ln -sf ../../_$(MACH)/$@ ../lib/$(MACH)/
|
336 arta 1.46 #***********************************************************************************************#
337
|
338 arta 1.1
|
339 arta 1.46 #***********************************************************************************************#
340 #
341 # LIBRARY COLLECTIONS
342 #
|
343 arta 1.43 ALL_LIBS_FPIC = $(LIBDRMSCLIENT_FPIC) $(LIBDBCLIENT_FPIC) $(LIBCMDPARAMS_FPIC) $(LIBTHREADUTIL_FPIC) $(LIBRICECOMP_FPIC) $(LIBDEFS_FPIC) $(LIBMISC_FPIC) $(LIBDSTRUCT_FPIC) $(LIBTIMEIO_FPIC) $(LIBFITSRW_FPIC)
|
344 arta 1.1
345 ### Standard parts
346 #
347 include $(SRCDIR)/Rules.mk
348
349 # Libraries from src/util linked with all programs.
|
350 arta 1.12 ifneq ($(COMPILER), icc)
|
351 arta 1.87 SYSLIBS = -lz -ldl -lpthread -lm -lutil
|
352 arta 1.12 else
|
353 arta 1.87 SYSLIBS = -lz -ldl -lpthread -lutil
|
354 arta 1.12 endif
|
355 arta 1.77 SRCLIBS = $(LIBTHREADUTIL) $(LIBRICECOMP) $(LIBCMDPARAMS) $(LIBTIMEIO) $(LIBFITSRW) $(LIBERRLOG) $(LIBEXPDRMS) $(LIBEXPUTL) $(LIBMISC) $(LIBDSTRUCT) $(LIBSTATS)
356 FSRCLIBS = $(LIBTHREADUTIL) $(LIBRICECOMP) $(LIBCMDPARAMSF) $(LIBTIMEIO) $(LIBFITSRW) $(LIBERRLOG) $(LIBEXPDRMS) $(LIBEXPUTL) $(LIBMISC) $(LIBDSTRUCT) $(LIBSTATS)
|
357 arta 1.1
358 ########## Libraries to link for server executables, ##############
359 ########## standalone executables and pipeline modules. ##############
360
361 # SERVERLIBS: Libraries linked with "server" programs that
362 # need direct access to the DRMS databases.
|
363 arta 1.84 SERVERLIBS = $(LIBDRMS) $(LIBDEFSSERVER) $(LIBDB) $(LIBSUMSAPI) $(LIBCJSON) $(SRCLIBS)
|
364 arta 1.1
365 # EXELIBS: Libraries linked with standalone executables.
|
366 arta 1.35 EXELIBS = $(LIBDRMSCLIENT) $(LIBDEFSCLIENT) $(LIBDBCLIENT) $(SRCLIBS)
|
367 arta 1.1
368 # MODLIBS: Libraries linked with DRMS modules.
369 MODLIBS = $(LIBJSOC_MAIN) $(SERVERLIBS)
370
371 # MODLIBS_SOCK: Libraries linked with DRMS modules with socket connection to a drms_server
|
372 arta 1.84 MODLIBS_SOCK = $(LIBJSOC_MAIN_SOCK) $(LIBDRMSCLIENT) $(LIBDEFSCLIENT) $(LIBDBCLIENT) $(LIBSUMSAPI) $(LIBCJSON) $(SRCLIBS)
|
373 arta 1.1
374 # FMODLIBS: Libraries linked with DRMS Fortran modules
|
375 arta 1.35 FMODLIBS_SOCK = $(LIBJSOC_MAIN_SOCK_F) $(LIBINTHANDLESF) $(LIBDRMSCLIENT) $(LIBDEFSCLIENT) $(LIBDBCLIENT) $(FSRCLIBS)
|
376 arta 1.46 #***********************************************************************************************#
377
|
378 arta 1.1
|
379 arta 1.46 #***********************************************************************************************#
380 #
381 # PROJECT MAKE RULES
382 #
|
383 arta 1.1 # Make rules that apply to all projects outside of the base DRMS/SUMS system
|
384 arta 1.69 -include $(SRCDIR)/$(LOCALIZATIONDIR)/make_basic.mk
|
385 arta 1.46 #***********************************************************************************************#
|
386 arta 1.1
|
387 arta 1.46
388 #***********************************************************************************************#
389 #
390 # MODULE TYPES
391 #
|
392 arta 1.1 # Make rules that apply to all projects, inside and outside of the base DRMS/SUMS system
393 $(CEXE): %: %.o $(EXELIBS)
394 $(LINK)
395 $(SLBIN)
396
|
397 arta 1.56 $(FEXE): %: %.o
|
398 arta 1.1 $(FLINK)
399 $(SLBIN)
400
|
401 arta 1.56 $(SERVEREXE): LL_TGT := $(LL_TGT) $(PGLIBS) $(CFITSIOLIBS)
|
402 arta 1.1 $(SERVEREXE): %: %.o $(SERVERLIBS)
403 $(LINK)
404 $(SLBIN)
405
|
406 arta 1.56 $(MODEXE): LL_TGT := $(LL_TGT) $(PGLIBS) $(CFITSIOLIBS)
|
407 arta 1.1 $(MODEXE): %: %.o $(MODLIBS)
408 $(LINK)
409 $(SLBIN)
410
|
411 arta 1.73 $(MODEXE_SOCK): LL_TGT := $(LL_TGT) $(PGLIBS) $(CFITSIOLIBS)
|
412 arta 1.1 $(MODEXE_SOCK): %_sock: %.o $(MODLIBS_SOCK)
413 $(LINK)
414 $(SLBIN)
|
415 arta 1.42 # FMODEXE_SOCK contains all Fortran modules - the DoIt() function is defined inside a .f file.
|
416 arta 1.39 # These are socket-connect modules only. Assume they use third-party Fortran libraries
417 # (although this may not be the case).
|
418 arta 1.87 $(FMODEXE_SOCK): LL_TGT := $(LL_TGT) $(PGLIBS) $(CFITSIOLIBS)
419 $(FMODEXE_SOCK): %_sock: %.o $(FMODLIBS_SOCK)
|
420 arta 1.1 $(FLINK)
421 $(SLBIN)
|
422 tplarson 1.20
|
423 arta 1.39 # MODEXE_USEF contains all C direct-connect modules that use third-party Fortran libraries.
|
424 arta 1.87 $(MODEXE_USEF): LL_TGT := $(LL_TGT) $(PGLIBS) $(CFITSIOLIBS)
|
425 tplarson 1.20 $(MODEXE_USEF): %: %.o $(MODLIBS)
426 $(FLINK)
427 $(SLBIN)
|
428 arta 1.39 # MODEXE_USEF contains all C socket-connect modules that use third-party Fortran libraries.
|
429 arta 1.87 $(MODEXE_USEF_SOCK): LL_TGT := $(LL_TGT) $(PGLIBS) $(CFITSIOLIBS)
|
430 tplarson 1.20 $(MODEXE_USEF_SOCK): %_sock: %.o $(MODLIBS_SOCK)
431 $(FLINK)
432 $(SLBIN)
|
433 arta 1.46 #***********************************************************************************************#
|