This repository has been archived by the owner on Jun 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Makefile.code
802 lines (776 loc) · 33.1 KB
/
Makefile.code
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
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
#=============================================================================
#
# This is the code-specific makefile for thermopack.
# It is called from Makefile.
#-----------------------------------------------------------------------
# STM: 2007-01-05
# KYL: 2009-03-16
#
#=============================================================================
# Set code specific directories and variables
#=============================================================================
ROOT = .
FULLROOT = $(shell pwd)
SRC = $(ROOT)/src
TEST = $(ROOT)/unittests
PFUNIT ?= /usr/local/linux/pfunit
ODIR = ./objects/$(TARGET)
BDIR = ./bin
DDIR = $(BDIR)/dynamic
INCDIR = -I$(FULLROOT)/ -I$(FULLROOT)/addon/trend_interface/include
LD = $(FC)
VPATH = . bin/ $(SRC)
# Needed libraries:
LIBTREND_DIR = $(FULLROOT)/trend
# Temporary directory for assembling all extra object files to be bundled:
LIB_OBJ_TMPDIR = ./lib_obj_tmp
# gfortran: old: -M; new: -J (stupid incompatible change!)
MOD = -module $(ODIR)
ifeq ($(FC),gfortran)
MOD = -J $(ODIR) -I $(ODIR)
else ifeq ($(FC),sunf90)
MOD = -moddir=$(ODIR)
endif
# Operative system dependent stuff
X86=
bit64 = $(shell uname -a | grep x86_64 | wc -c)
ifneq ($(bit64),0)
X86=64
endif
UNAME:=$(shell uname -s)$(X86)
LN_S=ln -s
ifeq ($(UNAME),WindowsNT)
LN_S=cp
endif
# Uname -o return Msys both on MINGW32 and MINGW64
ifeq ($(shell uname -o), Msys)
LN_S=cp
else
LN_S=ln -s
endif
# AA: Make it so OS = MINGW32 for all versions
OSo := $(shell uname -o)
ifeq ($(OSo),Msys)
OS=MINGW32
else
OS := $(shell uname -s)
endif
# A more silent compilation? Set to: 'on' or 'off'.
silent_run=off
#=============================================================================
# External libraries
#=============================================================================
# Thermodynamics
SLIBS =
ifeq ($(FC),pgf90)
DLIBS += -lgcc_s
endif
# Lapack and Blas are needed for numerical calculation of eigenvalues.
LADIR=./lapacklib
ifeq ($(UNAME),MINGW32)
DLIBS += -L$(LADIR)/$(UNAME) -llapack_$(LEXT) -lblas_$(LEXT)
else ifeq ($(shell uname -o), Msys)
SLIBS += -L$(LIBTREND_DIR)/bin -ltrend_$(TARGET)
# Assumes now that X86_64 targets on windows/Msys2.0 have openblas installed
ifeq ($(X86),64)
DLIBS += -lopenblas
else
DLIBS += -L./lapacklib -llapack -lrefblas
endif
else
DLIBS +=-llapack -lblas
endif
DLIBS += -ldl -lstdc++
LIBS += $(SLIBS)
LIBS += $(DLIBS)
TESTSRCS = $(wildcard $(TEST)/*.pf)
TESTOBJS = $(TESTSRCS:.pf=.o)
#=============================================================================
# Location of objects, and executable:
#=============================================================================
# Note: The order of the objects listed here decides the order of compilation.
#
OBJE = \
$(ODIR)/numconstants.o \
$(ODIR)/stringmod.o \
$(ODIR)/quadratures.o \
$(ODIR)/thermopack_constants.o \
$(ODIR)/error.o \
$(ODIR)/optimizer.o \
$(ODIR)/nonlinear_solvers.o \
$(ODIR)/utilities.o \
$(ODIR)/apparent_composition.o \
$(ODIR)/compdata.o \
$(ODIR)/association_var.o \
$(ODIR)/thermopack_var.o \
$(ODIR)/compdatadb.o \
$(ODIR)/compdata_init.o \
$(ODIR)/multiparameter_base.o \
$(ODIR)/multiparameter_c3.o \
$(ODIR)/multiparameter_para_h2.o \
$(ODIR)/multiparameter_ortho_h2.o \
$(ODIR)/multiparameter_normal_h2.o \
$(ODIR)/multiparameter_r134a.o \
$(ODIR)/mbwrdata.o \
$(ODIR)/mbwr.o \
$(ODIR)/mbwr_additional.o \
$(ODIR)/pets.o \
$(ODIR)/eosdata.o \
$(ODIR)/assocschemeutils.o \
$(ODIR)/pc_saft_parameters.o \
$(ODIR)/unifacdata.o \
$(ODIR)/unifac.o \
$(ODIR)/eos_parameters.o \
$(ODIR)/cubic_eos.o \
$(ODIR)/mixdatadb.o \
$(ODIR)/cbalpha.o \
$(ODIR)/cbbeta.o \
$(ODIR)/excess_gibbs.o \
$(ODIR)/wong_sandler.o \
$(ODIR)/cbmix.o \
$(ODIR)/cbhelm.o \
$(ODIR)/cubic.o \
$(ODIR)/idealh2.o \
$(ODIR)/ideal.o \
$(ODIR)/cpa_parameters.o \
$(ODIR)/cbselect.o \
$(ODIR)/pc_saft_nonassoc.o \
$(ODIR)/saftvrmie_options.o \
$(ODIR)/saftvrmie_parameters.o \
$(ODIR)/saftvrmie_containers.o \
$(ODIR)/saftvrmie_utils.o \
$(ODIR)/saftvrmie_hardsphere.o \
$(ODIR)/saftvrmie_dispersion.o \
$(ODIR)/saftvrmie_chain.o \
$(ODIR)/saftvrmie_interface.o \
$(ODIR)/saft_globals.o \
$(ODIR)/saft_rdf.o \
$(ODIR)/saft_association.o \
$(ODIR)/saft_interface.o \
$(ODIR)/extcsp.o \
$(ODIR)/leekesler.o \
$(ODIR)/multiparameter_idealmix.o \
$(ODIR)/volume_shift.o \
$(ODIR)/co2_gibbs.o \
$(ODIR)/h2o_gibbs.o \
$(ODIR)/single_component.o \
$(ODIR)/eos_container.o \
$(ODIR)/single_phase.o \
$(ODIR)/eostv.o \
$(ODIR)/trend_solver.o \
$(ODIR)/eos.o \
$(ODIR)/puresaturation.o \
$(ODIR)/thermo_utils.o \
$(ODIR)/critical.o \
$(ODIR)/saturation.o \
$(ODIR)/solideos.o \
$(ODIR)/vls.o \
$(ODIR)/stability.o \
$(ODIR)/tuning.o \
$(ODIR)/tp_solver.o \
$(ODIR)/state_functions.o \
$(ODIR)/saturation_curve.o \
$(ODIR)/solid_saturation.o \
$(ODIR)/saturation_point_locators.o \
$(ODIR)/ph_solver.o \
$(ODIR)/ps_solver.o \
$(ODIR)/uv_solver.o \
$(ODIR)/sv_solver.o \
$(ODIR)/isolines.o \
$(ODIR)/binaryplot.o \
$(ODIR)/speed_of_sound.o \
$(ODIR)/saftvrmie_testing.o \
$(ODIR)/consistency.o \
$(ODIR)/eoslibinit.o \
$(ODIR)/complexmodelinit.o \
$(ODIR)/external.o
ifdef $(THERMOPACK_WITH_TREND)
OBJIF = $(ODIR)/dltrend.o \
$(ODIR)/compname_translation.o \
LTREND = $(LIBTREND_DIR)/bin/libtrend_$(TARGET).a
else
OBJIF = $(ODIR)/dltrend_dummy.o
LTREND =
endif
#=============================================================================
# Rules to make executable:
#=============================================================================
.PHONY: thermopack run_unittests trend_$(TARGET) clean
libthermopack_$(TARGET).a: $(LTREND) Makefile Makefile.code $(OBJE) $(OBJIF)
@rm -f $(BDIR)/libthermopack_$(TARGET).a
ar -rc -o $(BDIR)/libthermopack_$(TARGET).a $(OBJE) $(OBJIF)
ranlib $(BDIR)/libthermopack_$(TARGET).a
libthermopack_$(TARGET).so: Makefile Makefile.code $(OBJE) $(OBJIF)
@rm -f $(DDIR)/libthermopack_$(TARGET)*.so
$(FC) -shared -o $(DDIR)/libthermopack_$(TARGET).so $(OBJE) \
$(OBJIF) -Wl,--version-script=libthermopack_export.version \
-Wl,-Bstatic $(SLIBS) -Wl,-Bdynamic $(DLIBS)
thermopack_$(TARGET): $(OBJTEST) $(BDIR)/libthermopack_$(TARGET).a \
Makefile Makefile.code
$(LD) $(FFLAGS) -o$(BDIR)/run_$(TARGET) \
$(OBJTEST) $(BDIR)/libthermopack_$(TARGET).a $(LIBS)
thermopack:
@mkdir -p $(BDIR) $(ODIR) $(DDIR)
$(MAKE) -f Makefile.code -e trend_$(TARGET)
$(MAKE) -f Makefile.code -e libthermopack_$(TARGET).a
$(MAKE) -f Makefile.code -e libthermopack_$(TARGET).so
$(MAKE) -f Makefile.code -e run
run: $(ODIR)/thermopack.o
$(LD) $(FFLAGS) -o$(BDIR)/thermopack_$(TARGET) \
$(ODIR)/thermopack.o $(BDIR)/libthermopack_$(TARGET).a $(LIBS)
@rm -f run_thermopack run_thermopack.exe
@if [ $(UNAME) = WindowsNT ]; then \
$(LN_S) $(BDIR)/thermopack_$(TARGET).exe run_thermopack.exe; \
else if [ $(OS) = MINGW32 ]; then \
$(LN_S) $(BDIR)/thermopack_$(TARGET).exe run_thermopack.exe; \
else \
$(LN_S) $(BDIR)/thermopack_$(TARGET) run_thermopack; \
fi \
fi
run_unittests:
@mkdir -p $(BDIR) $(ODIR)
$(MAKE) -f Makefile.code -e libthermopack_$(TARGET).a
$(MAKE) -f Makefile.code -e trend_$(TARGET)
$(MAKE) -C unittests PFUNIT=$(PFUNIT) ODIR=$(ODIR) \
INCDIR=$(INCDIR) tests
$(MAKE) -f Makefile.code unittests_$(TARGET)
@rm -f run_unittests run_unittests.exe
@if [ $(OS) = MINGW32 ]; then \
$(LN_S) $(BDIR)/unittests_$(TARGET).exe run_unittests.exe; \
else \
$(LN_S) $(BDIR)/unittests_$(TARGET) run_unittests; \
fi
unittests_$(TARGET): $(OBJE) $(TESTOBJS) unittests/testSuites.inc
$(LD) $(FFLAGS) -o $(BDIR)/$@ $(OBJE) $(OBJIF) $(TESTOBJS) -I$(PFUNIT)/mod -I$(PFUNIT)/include $(PFUNIT)/include/driver.F90 -L$(PFUNIT)/lib -lpfunit $(LIBS) -Iunittests -DBUILD_ROBUST
trend_$(TARGET):
ifdef $(THERMOPACK_WITH_TREND)
$(MAKE) -C $(LIBTREND_DIR) $(TARGET);
endif
clean:
rm -rf ./objects
rm -rf $(SRC)/*.mod
make -C unittests PFUNIT=$(PFUNIT) ODIR=$(ODIR) \
INCDIR=$(INCDIR) clean
#=============================================================================
# Detailed dependencies of the object files:
#=============================================================================
ifeq ($(silent_run),on)
ifeq ($(MODE),openmpprofile)
make_object = echo $(FC) ... $(1); \
kinst-ompp $(FC) $(FFLAGS) $(MOD) $(INCDIR) -c -o $@ $(1);
make_object_cpp = echo $(CC) ... $(1); \
kinst-ompp $(CC) $(CFLAGS) -DTARGET=$(TARGET) $(INCDIR) -c -o $@ $(1);
else
make_object = echo $(FC) ... $(1); \
$(FC) $(FFLAGS) $(MOD) $(INCDIR) -c -o $@ $(1);
make_object_cpp = echo $(CC) ... $(1); \
$(CC) $(CFLAGS) -DTARGET=$(TARGET) $(INCDIR) -c -o $@ $(1);
endif
else
ifeq ($(MODE),openmpprofile)
make_object = $(FC) $(FFLAGS) $(MOD) $(INCDIR) -c -o $@ $(1); \
kinst-ompp $(FC) $(FFLAGS) $(MOD) $(INCDIR) -c -o $@ $(1);
make_object_cpp = echo $(CC) $(CFLAGS) -DTARGET=$(TARGET) $(INCDIR) -c -o $@ $(1); \
kinst-ompp $(CC) $(CFLAGS) -DTARGET=$(TARGET) $(INCDIR) -c -o $@ $(1);
else
make_object = \
echo $(FC) $(FFLAGS) $(MOD) $(INCDIR) -c -o $@ $(1); \
$(FC) $(FFLAGS) $(MOD) $(INCDIR) -c -o $@ $(1);
make_object_cpp = \
echo $(CC) $(CFLAGS) -DTARGET=$(TARGET) $(INCDIR) -c -o $@ $(1); \
$(CC) $(CFLAGS) -DTARGET=$(TARGET) $(INCDIR) -c -o $@ $(1);
endif
endif
$(ODIR)/dltrend.o: $(SRC)/dltrend.cpp $(LTREND)
@$(call make_object_cpp,$(SRC)/dltrend.cpp)
###############################################
# Build information generated using
# thermopack/addon/pyUtils/generate_dependensies.py
###############################################
$(ODIR)/ps_solver.o: $(SRC)/ps_solver.f90 \
$(SRC)/numconstants.f90 $(SRC)/thermopack_var.f90 \
$(SRC)/thermopack_constants.f90 $(SRC)/tp_solver.f90 \
$(SRC)/state_functions.f90 $(SRC)/thermo_utils.f90 \
$(SRC)/stability.f90 $(SRC)/eos.f90 \
$(SRC)/nonlinear_solvers.f90 $(SRC)/saturation.f90 \
$(SRC)/solid_saturation.f90 $(SRC)/solideos.f90
@$(call make_object, $(SRC)/ps_solver.f90)
$(ODIR)/apparent_composition.o: $(SRC)/apparent_composition.f90 \
$(SRC)/thermopack_constants.f90
@$(call make_object, $(SRC)/apparent_composition.f90)
$(ODIR)/multiparameter_ortho_h2.o: $(SRC)/multiparameter_ortho_h2.f90 \
$(SRC)/multiparameter_base.f90 $(SRC)/thermopack_constants.f90
@$(call make_object, $(SRC)/multiparameter_ortho_h2.f90)
$(ODIR)/consistency.o: $(SRC)/consistency.f90 \
$(SRC)/eos.f90 $(SRC)/thermopack_constants.f90 \
$(SRC)/thermopack_var.f90 $(SRC)/cubic_eos.f90 \
$(SRC)/cubic.f90 $(SRC)/cbmix.f90 \
$(SRC)/cbhelm.f90 $(SRC)/eosdata.f90
@$(call make_object, $(SRC)/consistency.f90)
$(ODIR)/saftvrmie_utils.o: $(SRC)/saftvrmie_utils.f90 \
$(SRC)/saftvrmie_containers.f90
@$(call make_object, $(SRC)/saftvrmie_utils.f90)
$(ODIR)/complexmodelinit.o: $(SRC)/complexmodelinit.f90 \
$(SRC)/eoslibinit.f90 $(SRC)/thermopack_var.f90 \
$(SRC)/thermopack_constants.f90 $(SRC)/volume_shift.f90
@$(call make_object, $(SRC)/complexmodelinit.f90)
$(ODIR)/saftvrmie_chain.o: $(SRC)/saftvrmie_chain.f90 \
$(SRC)/saftvrmie_containers.f90 $(SRC)/thermopack_constants.f90 \
$(SRC)/numconstants.f90 $(SRC)/saftvrmie_dispersion.f90 \
$(SRC)/saftvrmie_utils.f90 $(SRC)/saftvrmie_options.f90
@$(call make_object, $(SRC)/saftvrmie_chain.f90)
$(ODIR)/single_phase.o: $(SRC)/single_phase.f90 \
$(SRC)/compdata.f90 $(SRC)/thermopack_var.f90 \
$(SRC)/cubic.f90 $(SRC)/ideal.f90 \
$(SRC)/stringmod.f90 $(SRC)/leekesler.f90 \
$(SRC)/eosdata.f90 $(SRC)/multiparameter_idealmix.f90 \
$(SRC)/single_component.f90 $(SRC)/eos_parameters.f90 \
$(SRC)/cubic_eos.f90 $(SRC)/thermopack_constants.f90 \
$(SRC)/extcsp.f90 $(SRC)/saft_interface.f90 \
$(SRC)/volume_shift.f90 $(SRC)/saftvrmie_containers.f90 \
$(SRC)/pc_saft_nonassoc.f90
@$(call make_object, $(SRC)/single_phase.f90)
$(ODIR)/thermopack.o: $(SRC)/thermopack.f90 \
$(SRC)/eoslibinit.f90 $(SRC)/thermopack_constants.f90 \
$(SRC)/critical.f90 $(SRC)/eostv.f90
@$(call make_object, $(SRC)/thermopack.f90)
$(ODIR)/ideal.o: $(SRC)/ideal.f90 \
$(SRC)/thermopack_constants.f90 $(SRC)/compdata.f90 \
$(SRC)/idealh2.f90 $(SRC)/thermopack_var.f90
@$(call make_object, $(SRC)/ideal.f90)
$(ODIR)/excess_gibbs.o: $(SRC)/excess_gibbs.f90 \
$(SRC)/cubic_eos.f90 $(SRC)/eosdata.f90 \
$(SRC)/thermopack_var.f90 $(SRC)/thermopack_constants.f90 \
$(SRC)/unifac.f90
@$(call make_object, $(SRC)/excess_gibbs.f90)
$(ODIR)/tuning.o: $(SRC)/tuning.f90 \
$(SRC)/thermopack_var.f90 $(SRC)/cubic_eos.f90 \
$(SRC)/cbalpha.f90 $(SRC)/eos_parameters.f90 \
$(SRC)/saftvrmie_containers.f90 $(SRC)/saft_interface.f90 \
$(SRC)/pc_saft_nonassoc.f90
@$(call make_object, $(SRC)/tuning.f90)
$(ODIR)/vls.o: $(SRC)/vls.f90 \
$(SRC)/thermopack_constants.f90 $(SRC)/thermopack_var.f90 \
$(SRC)/solideos.f90 $(SRC)/eos.f90 \
$(SRC)/numconstants.f90
@$(call make_object, $(SRC)/vls.f90)
$(ODIR)/saft_association.o: $(SRC)/saft_association.f90 \
$(SRC)/assocschemeutils.f90 $(SRC)/thermopack_constants.f90 \
$(SRC)/thermopack_var.f90 $(SRC)/association_var.f90 \
$(SRC)/saft_globals.f90 $(SRC)/saft_rdf.f90 \
$(SRC)/nonlinear_solvers.f90 $(SRC)/numconstants.f90
@$(call make_object, $(SRC)/saft_association.f90)
$(ODIR)/assocschemeutils.o: $(SRC)/assocschemeutils.f90 \
$(SRC)/thermopack_constants.f90 $(SRC)/association_var.f90 \
$(SRC)/eosdata.f90
@$(call make_object, $(SRC)/assocschemeutils.f90)
$(ODIR)/multiparameter_r134a.o: $(SRC)/multiparameter_r134a.f90 \
$(SRC)/multiparameter_base.f90 $(SRC)/thermopack_constants.f90
@$(call make_object, $(SRC)/multiparameter_r134a.f90)
$(ODIR)/co2_gibbs.o: $(SRC)/co2_gibbs.f90
@$(call make_object, $(SRC)/co2_gibbs.f90)
$(ODIR)/stability.o: $(SRC)/stability.f90 \
$(SRC)/thermopack_constants.f90 $(SRC)/thermopack_var.f90 \
$(SRC)/numconstants.f90 $(SRC)/utilities.f90 \
$(SRC)/eos.f90 $(SRC)/thermo_utils.f90
@$(call make_object, $(SRC)/stability.f90)
$(ODIR)/saftvrmie_parameters.o: $(SRC)/saftvrmie_parameters.f90 \
$(SRC)/assocschemeutils.f90 $(SRC)/eosdata.f90 \
$(SRC)/thermopack_constants.f90 $(SRC)/stringmod.f90 \
$(SRC)/thermopack_var.f90 $(SRC)/compdata.f90
@$(call make_object, $(SRC)/saftvrmie_parameters.f90)
$(ODIR)/external.o: $(SRC)/external.f90 \
$(SRC)/eoslibinit.f90 $(SRC)/thermopack_constants.f90 \
$(SRC)/tp_solver.f90 $(SRC)/thermopack_var.f90 \
$(SRC)/eostv.f90 $(SRC)/uv_solver.f90 \
$(SRC)/ph_solver.f90 $(SRC)/ps_solver.f90 \
$(SRC)/saturation.f90 $(SRC)/eos.f90 \
$(SRC)/thermo_utils.f90 $(SRC)/puresaturation.f90 \
$(SRC)/state_functions.f90
@$(call make_object, $(SRC)/external.f90)
$(ODIR)/mbwrdata.o: $(SRC)/mbwrdata.f90 \
$(SRC)/stringmod.f90
@$(call make_object, $(SRC)/mbwrdata.f90)
$(ODIR)/eostv.o: $(SRC)/eostv.f90 \
$(SRC)/thermopack_var.f90 $(SRC)/thermopack_constants.f90 \
$(SRC)/single_phase.f90 $(SRC)/cbhelm.f90 \
$(SRC)/volume_shift.f90 $(SRC)/eosdata.f90
@$(call make_object, $(SRC)/eostv.f90)
$(ODIR)/uv_solver.o: $(SRC)/uv_solver.f90 \
$(SRC)/thermopack_constants.f90 $(SRC)/numconstants.f90 \
$(SRC)/thermopack_var.f90 $(SRC)/eos.f90 \
$(SRC)/tp_solver.f90 $(SRC)/state_functions.f90 \
$(SRC)/stability.f90 $(SRC)/thermo_utils.f90 \
$(SRC)/nonlinear_solvers.f90 $(SRC)/saturation.f90 \
$(SRC)/eostv.f90
@$(call make_object, $(SRC)/uv_solver.f90)
$(ODIR)/cbmix.o: $(SRC)/cbmix.f90 \
$(SRC)/eosdata.f90 $(SRC)/cubic_eos.f90 \
$(SRC)/thermopack_constants.f90 $(SRC)/numconstants.f90 \
$(SRC)/cbbeta.f90 $(SRC)/wong_sandler.f90 \
$(SRC)/excess_gibbs.f90 $(SRC)/cbalpha.f90 \
$(SRC)/stringmod.f90 $(SRC)/thermopack_var.f90
@$(call make_object, $(SRC)/cbmix.f90)
$(ODIR)/utilities.o: $(SRC)/utilities.f90 \
$(SRC)/numconstants.f90
@$(call make_object, $(SRC)/utilities.f90)
$(ODIR)/compdata_init.o: $(SRC)/compdata_init.f90 \
$(SRC)/compdata.f90 $(SRC)/compdatadb.f90 \
$(SRC)/stringmod.f90 $(SRC)/thermopack_constants.f90 \
$(SRC)/thermopack_var.f90 $(SRC)/compdata_init.f90
@$(call make_object, $(SRC)/compdata_init.f90)
$(ODIR)/wong_sandler.o: $(SRC)/wong_sandler.f90 \
$(SRC)/thermopack_var.f90 $(SRC)/cubic_eos.f90 \
$(SRC)/thermopack_constants.f90 $(SRC)/excess_gibbs.f90
@$(call make_object, $(SRC)/wong_sandler.f90)
$(ODIR)/pc_saft_parameters.o: $(SRC)/pc_saft_parameters.f90 \
$(SRC)/assocschemeutils.f90 $(SRC)/eosdata.f90 \
$(SRC)/thermopack_constants.f90 $(SRC)/stringmod.f90 \
$(SRC)/compdata.f90
@$(call make_object, $(SRC)/pc_saft_parameters.f90)
$(ODIR)/saftvrmie_dispersion.o: $(SRC)/saftvrmie_dispersion.f90 \
$(SRC)/saftvrmie_containers.f90 $(SRC)/saftvrmie_utils.f90 \
$(SRC)/thermopack_constants.f90 $(SRC)/numconstants.f90 \
$(SRC)/saftvrmie_options.f90 $(SRC)/saftvrmie_hardsphere.f90 \
$(SRC)/utilities.f90
@$(call make_object, $(SRC)/saftvrmie_dispersion.f90)
$(ODIR)/multiparameter_para_h2.o: $(SRC)/multiparameter_para_h2.f90 \
$(SRC)/multiparameter_base.f90 $(SRC)/thermopack_constants.f90
@$(call make_object, $(SRC)/multiparameter_para_h2.f90)
$(ODIR)/eos_container.o: $(SRC)/eos_container.f90 \
$(SRC)/compdata.f90 $(SRC)/eos_parameters.f90 \
$(SRC)/cubic_eos.f90 $(SRC)/thermopack_var.f90 \
$(SRC)/saftvrmie_containers.f90 $(SRC)/pc_saft_nonassoc.f90 \
$(SRC)/extcsp.f90 $(SRC)/eosdata.f90 \
$(SRC)/pets.f90
@$(call make_object, $(SRC)/eos_container.f90)
$(ODIR)/pets.o: $(SRC)/pets.f90 \
$(SRC)/thermopack_var.f90 $(SRC)/thermopack_constants.f90 \
$(SRC)/numconstants.f90
@$(call make_object, $(SRC)/pets.f90)
$(ODIR)/pc_saft_nonassoc.o: $(SRC)/pc_saft_nonassoc.f90 \
$(SRC)/thermopack_var.f90 $(SRC)/thermopack_constants.f90 \
$(SRC)/numconstants.f90 $(SRC)/utilities.f90
@$(call make_object, $(SRC)/pc_saft_nonassoc.f90)
$(ODIR)/cbselect.o: $(SRC)/cbselect.f90 \
$(SRC)/eosdata.f90 $(SRC)/cubic_eos.f90 \
$(SRC)/stringmod.f90 $(SRC)/compdata.f90 \
$(SRC)/cbalpha.f90 $(SRC)/cbbeta.f90 \
$(SRC)/cbmix.f90 $(SRC)/unifac.f90 \
$(SRC)/thermopack_var.f90 $(SRC)/cpa_parameters.f90 \
$(SRC)/mixdatadb.f90
@$(call make_object, $(SRC)/cbselect.f90)
$(ODIR)/multiparameter_base.o: $(SRC)/multiparameter_base.f90 \
$(SRC)/numconstants.f90 $(SRC)/thermopack_constants.f90
@$(call make_object, $(SRC)/multiparameter_base.f90)
$(ODIR)/cbhelm.o: $(SRC)/cbhelm.f90 \
$(SRC)/cubic_eos.f90 $(SRC)/thermopack_constants.f90
@$(call make_object, $(SRC)/cbhelm.f90)
$(ODIR)/cubic.o: $(SRC)/cubic.f90 \
$(SRC)/thermopack_constants.f90 $(SRC)/cubic_eos.f90 \
$(SRC)/eosdata.f90 $(SRC)/cbmix.f90 \
$(SRC)/cbhelm.f90 $(SRC)/numconstants.f90
@$(call make_object, $(SRC)/cubic.f90)
$(ODIR)/eos.o: $(SRC)/eos.f90 \
$(SRC)/thermopack_constants.f90 $(SRC)/thermopack_var.f90 \
$(SRC)/single_phase.f90 $(SRC)/trend_solver.f90 \
$(SRC)/numconstants.f90 $(SRC)/eostv.f90 \
$(SRC)/cubic_eos.f90 $(SRC)/eosdata.f90 \
$(SRC)/ideal.f90
@$(call make_object, $(SRC)/eos.f90)
$(ODIR)/solideos.o: $(SRC)/solideos.f90 \
$(SRC)/thermopack_constants.f90 $(SRC)/thermopack_var.f90 \
$(SRC)/co2_gibbs.f90 $(SRC)/h2o_gibbs.f90 \
$(SRC)/compdata.f90 $(SRC)/eos.f90 \
$(SRC)/nonlinear_solvers.f90 $(SRC)/saturation.f90
@$(call make_object, $(SRC)/solideos.f90)
$(ODIR)/saftvrmie_interface.o: $(SRC)/saftvrmie_interface.f90 \
$(SRC)/saftvrmie_containers.f90 $(SRC)/thermopack_constants.f90 \
$(SRC)/saftvrmie_options.f90 $(SRC)/thermopack_var.f90 \
$(SRC)/saftvrmie_hardsphere.f90 $(SRC)/saftvrmie_dispersion.f90 \
$(SRC)/saftvrmie_chain.f90 $(SRC)/saftvrmie_interface.f90 \
$(SRC)/saftvrmie_utils.f90
@$(call make_object, $(SRC)/saftvrmie_interface.f90)
$(ODIR)/cpa_parameters.o: $(SRC)/cpa_parameters.f90 \
$(SRC)/thermopack_constants.f90 $(SRC)/eosdata.f90 \
$(SRC)/cubic_eos.f90 $(SRC)/assocschemeutils.f90 \
$(SRC)/stringmod.f90 $(SRC)/compdata.f90
@$(call make_object, $(SRC)/cpa_parameters.f90)
$(ODIR)/saftvrmie_options.o: $(SRC)/saftvrmie_options.f90
@$(call make_object, $(SRC)/saftvrmie_options.f90)
$(ODIR)/extcsp.o: $(SRC)/extcsp.f90 \
$(SRC)/thermopack_constants.f90 $(SRC)/compdata.f90 \
$(SRC)/cubic_eos.f90 $(SRC)/mbwr.f90 \
$(SRC)/multiparameter_c3.f90 $(SRC)/stringmod.f90 \
$(SRC)/multiparameter_base.f90 $(SRC)/thermopack_var.f90 \
$(SRC)/cbselect.f90 $(SRC)/eosdata.f90 \
$(SRC)/nonlinear_solvers.f90 $(SRC)/cbmix.f90 \
$(SRC)/cubic.f90 $(SRC)/mbwr_additional.f90 \
$(SRC)/cbhelm.f90 $(SRC)/utilities.f90
@$(call make_object, $(SRC)/extcsp.f90)
$(ODIR)/multiparameter_normal_h2.o: $(SRC)/multiparameter_normal_h2.f90 \
$(SRC)/multiparameter_base.f90 $(SRC)/thermopack_constants.f90
@$(call make_object, $(SRC)/multiparameter_normal_h2.f90)
$(ODIR)/multiparameter_c3.o: $(SRC)/multiparameter_c3.f90 \
$(SRC)/multiparameter_base.f90 $(SRC)/thermopack_constants.f90
@$(call make_object, $(SRC)/multiparameter_c3.f90)
$(ODIR)/dltrend_dummy.o: $(SRC)/dltrend_dummy.f90
@$(call make_object, $(SRC)/dltrend_dummy.f90)
$(ODIR)/leekesler.o: $(SRC)/leekesler.f90 \
$(SRC)/thermopack_constants.f90 $(SRC)/eosdata.f90 \
$(SRC)/cubic_eos.f90 $(SRC)/compdata.f90 \
$(SRC)/numconstants.f90
@$(call make_object, $(SRC)/leekesler.f90)
$(ODIR)/solid_saturation.o: $(SRC)/solid_saturation.f90 \
$(SRC)/saturation.f90 $(SRC)/saturation_curve.f90 \
$(SRC)/eos.f90 $(SRC)/thermopack_constants.f90 \
$(SRC)/thermopack_var.f90 $(SRC)/nonlinear_solvers.f90 \
$(SRC)/solideos.f90 $(SRC)/utilities.f90 \
$(SRC)/vls.f90 $(SRC)/thermo_utils.f90 \
$(SRC)/tp_solver.f90 $(SRC)/numconstants.f90 \
$(SRC)/eostv.f90 $(SRC)/critical.f90
@$(call make_object, $(SRC)/solid_saturation.f90)
$(ODIR)/cbalpha.o: $(SRC)/cbalpha.f90 \
$(SRC)/stringmod.f90 $(SRC)/cubic_eos.f90 \
$(SRC)/compdata.f90 $(SRC)/compdatadb.f90
@$(call make_object, $(SRC)/cbalpha.f90)
$(ODIR)/cbbeta.o: $(SRC)/cbbeta.f90 \
$(SRC)/cubic_eos.f90 $(SRC)/eosdata.f90 \
$(SRC)/compdata.f90 $(SRC)/stringmod.f90
@$(call make_object, $(SRC)/cbbeta.f90)
$(ODIR)/idealh2.o: $(SRC)/idealh2.f90 \
$(SRC)/stringmod.f90
@$(call make_object, $(SRC)/idealh2.f90)
$(ODIR)/mbwr_additional.o: $(SRC)/mbwr_additional.f90 \
$(SRC)/thermopack_constants.f90 $(SRC)/mbwr.f90
@$(call make_object, $(SRC)/mbwr_additional.f90)
$(ODIR)/mixdatadb.o: $(SRC)/mixdatadb.f90 \
$(SRC)/cubic_eos.f90
@$(call make_object, $(SRC)/mixdatadb.f90)
$(ODIR)/speed_of_sound.o: $(SRC)/speed_of_sound.f90 \
$(SRC)/thermopack_constants.f90 $(SRC)/thermopack_var.f90 \
$(SRC)/eos.f90 $(SRC)/trend_solver.f90 \
$(SRC)/state_functions.f90 $(SRC)/solideos.f90 \
$(SRC)/eostv.f90
@$(call make_object, $(SRC)/speed_of_sound.f90)
$(ODIR)/numconstants.o: $(SRC)/numconstants.f90
@$(call make_object, $(SRC)/numconstants.f90)
$(ODIR)/h2o_gibbs.o: $(SRC)/h2o_gibbs.f90
@$(call make_object, $(SRC)/h2o_gibbs.f90)
$(ODIR)/thermopack_constants.o: $(SRC)/thermopack_constants.f90
@$(call make_object, $(SRC)/thermopack_constants.f90)
$(ODIR)/mbwr.o: $(SRC)/mbwr.f90 \
$(SRC)/thermopack_constants.f90 $(SRC)/mbwrdata.f90 \
$(SRC)/compdatadb.f90 $(SRC)/compdata_init.f90 \
$(SRC)/numconstants.f90
@$(call make_object, $(SRC)/mbwr.f90)
$(ODIR)/sv_solver.o: $(SRC)/sv_solver.f90 \
$(SRC)/numconstants.f90 $(SRC)/thermopack_constants.f90 \
$(SRC)/thermopack_var.f90 $(SRC)/eos.f90 \
$(SRC)/tp_solver.f90 $(SRC)/state_functions.f90 \
$(SRC)/stability.f90 $(SRC)/thermo_utils.f90 \
$(SRC)/nonlinear_solvers.f90 $(SRC)/saturation.f90 \
$(SRC)/eostv.f90
@$(call make_object, $(SRC)/sv_solver.f90)
$(ODIR)/multiparameter_idealmix.o: $(SRC)/multiparameter_idealmix.f90 \
$(SRC)/thermopack_constants.f90 $(SRC)/eos_parameters.f90
@$(call make_object, $(SRC)/multiparameter_idealmix.f90)
$(ODIR)/error.o: $(SRC)/error.f90 \
$(SRC)/thermopack_constants.f90 $(SRC)/error.f90
@$(call make_object, $(SRC)/error.f90)
$(ODIR)/state_functions.o: $(SRC)/state_functions.f90 \
$(SRC)/thermopack_var.f90 $(SRC)/thermopack_constants.f90 \
$(SRC)/eos.f90 $(SRC)/numconstants.f90 \
$(SRC)/eostv.f90
@$(call make_object, $(SRC)/state_functions.f90)
$(ODIR)/unifacdata.o: $(SRC)/unifacdata.f90 \
$(SRC)/thermopack_constants.f90
@$(call make_object, $(SRC)/unifacdata.f90)
$(ODIR)/saftvrmie_testing.o: $(SRC)/saftvrmie_testing.f90 \
$(SRC)/saftvrmie_containers.f90 $(SRC)/thermopack_constants.f90 \
$(SRC)/thermopack_var.f90 $(SRC)/numconstants.f90 \
$(SRC)/saftvrmie_hardsphere.f90 $(SRC)/saftvrmie_dispersion.f90 \
$(SRC)/saftvrmie_options.f90 $(SRC)/saftvrmie_interface.f90 \
$(SRC)/eostv.f90
@$(call make_object, $(SRC)/saftvrmie_testing.f90)
$(ODIR)/volume_shift.o: $(SRC)/volume_shift.f90 \
$(SRC)/compdata.f90 $(SRC)/stringmod.f90 \
$(SRC)/thermopack_constants.f90 $(SRC)/compdatadb.f90
@$(call make_object, $(SRC)/volume_shift.f90)
$(ODIR)/stringmod.o: $(SRC)/stringmod.f90
@$(call make_object, $(SRC)/stringmod.f90)
$(ODIR)/eos_parameters.o: $(SRC)/eos_parameters.f90 \
$(SRC)/compdata.f90 $(SRC)/eosdata.f90 \
$(SRC)/thermopack_var.f90 $(SRC)/multiparameter_base.f90 \
$(SRC)/multiparameter_c3.f90 $(SRC)/multiparameter_ortho_h2.f90 \
$(SRC)/multiparameter_para_h2.f90 $(SRC)/multiparameter_normal_h2.f90 \
$(SRC)/multiparameter_r134a.f90 $(SRC)/mbwr.f90 \
$(SRC)/utilities.f90
@$(call make_object, $(SRC)/eos_parameters.f90)
$(ODIR)/trend_solver.o: $(SRC)/trend_solver.f90 \
$(SRC)/thermopack_constants.f90 $(SRC)/thermopack_var.f90 \
$(SRC)/numconstants.f90 $(SRC)/eostv.f90 \
$(SRC)/nonlinear_solvers.f90
@$(call make_object, $(SRC)/trend_solver.f90)
$(ODIR)/thermo_utils.o: $(SRC)/thermo_utils.f90 \
$(SRC)/thermopack_constants.f90 $(SRC)/thermopack_var.f90 \
$(SRC)/eos.f90 $(SRC)/eostv.f90 \
$(SRC)/cubic_eos.f90 $(SRC)/eosdata.f90 \
$(SRC)/trend_solver.f90
@$(call make_object, $(SRC)/thermo_utils.f90)
$(ODIR)/nonlinear_solvers.o: $(SRC)/nonlinear_solvers.f90
@$(call make_object, $(SRC)/nonlinear_solvers.f90)
$(ODIR)/eosdata.o: $(SRC)/eosdata.f90 \
$(SRC)/stringmod.f90 $(SRC)/thermopack_constants.f90
@$(call make_object, $(SRC)/eosdata.f90)
$(ODIR)/quadratures.o: $(SRC)/quadratures.f90
@$(call make_object, $(SRC)/quadratures.f90)
$(ODIR)/eoslibinit.o: $(SRC)/eoslibinit.f90 \
$(SRC)/thermopack_var.f90 $(SRC)/eos_container.f90 \
$(SRC)/stringmod.f90 $(SRC)/volume_shift.f90 \
$(SRC)/thermopack_constants.f90 $(SRC)/cbselect.f90 \
$(SRC)/compdata.f90 $(SRC)/eosdata.f90 \
$(SRC)/cubic_eos.f90 $(SRC)/extcsp.f90 \
$(SRC)/cbmix.f90 $(SRC)/eostv.f90 \
$(SRC)/critical.f90 $(SRC)/saturation.f90 \
$(SRC)/cbalpha.f90 $(SRC)/saft_interface.f90 \
$(SRC)/cpa_parameters.f90 $(SRC)/assocschemeutils.f90 \
$(SRC)/saft_association.f90 $(SRC)/saftvrmie_options.f90
@$(call make_object, $(SRC)/eoslibinit.f90)
$(ODIR)/saftvrmie_containers.o: $(SRC)/saftvrmie_containers.f90 \
$(SRC)/saftvrmie_parameters.f90 $(SRC)/saftvrmie_options.f90 \
$(SRC)/thermopack_var.f90 $(SRC)/eosdata.f90 \
$(SRC)/thermopack_constants.f90 $(SRC)/numconstants.f90
@$(call make_object, $(SRC)/saftvrmie_containers.f90)
$(ODIR)/saturation.o: $(SRC)/saturation.f90 \
$(SRC)/eos.f90 $(SRC)/thermopack_constants.f90 \
$(SRC)/thermopack_var.f90 $(SRC)/nonlinear_solvers.f90 \
$(SRC)/numconstants.f90 $(SRC)/puresaturation.f90 \
$(SRC)/thermo_utils.f90 $(SRC)/eostv.f90
@$(call make_object, $(SRC)/saturation.f90)
$(ODIR)/compdatadb.o: $(SRC)/compdatadb.f90 \
$(SRC)/compdata.f90
@$(call make_object, $(SRC)/compdatadb.f90)
$(ODIR)/saturation_point_locators.o: $(SRC)/saturation_point_locators.f90 \
$(SRC)/saturation.f90 $(SRC)/saturation_curve.f90 \
$(SRC)/solid_saturation.f90 $(SRC)/eos.f90 \
$(SRC)/thermopack_constants.f90 $(SRC)/thermopack_var.f90 \
$(SRC)/nonlinear_solvers.f90 $(SRC)/numconstants.f90 \
$(SRC)/puresaturation.f90 $(SRC)/trend_solver.f90 \
$(SRC)/thermo_utils.f90 $(SRC)/critical.f90 \
$(SRC)/eostv.f90 $(SRC)/stringmod.f90 \
$(SRC)/solideos.f90 $(SRC)/vls.f90
@$(call make_object, $(SRC)/saturation_point_locators.f90)
$(ODIR)/saftvrmie_hardsphere.o: $(SRC)/saftvrmie_hardsphere.f90 \
$(SRC)/saftvrmie_containers.f90 $(SRC)/thermopack_constants.f90 \
$(SRC)/numconstants.f90 $(SRC)/quadratures.f90 \
$(SRC)/saftvrmie_options.f90 $(SRC)/nonlinear_solvers.f90 \
$(SRC)/thermopack_var.f90 $(SRC)/saftvrmie_utils.f90 \
$(SRC)/saftvrmie_hardsphere.f90
@$(call make_object, $(SRC)/saftvrmie_hardsphere.f90)
$(ODIR)/binaryplot.o: $(SRC)/binaryplot.f90 \
$(SRC)/thermopack_constants.f90 $(SRC)/thermopack_var.f90 \
$(SRC)/saturation.f90 $(SRC)/eos.f90 \
$(SRC)/utilities.f90 $(SRC)/critical.f90 \
$(SRC)/stability.f90 $(SRC)/numconstants.f90 \
$(SRC)/nonlinear_solvers.f90 $(SRC)/puresaturation.f90 \
$(SRC)/eostv.f90 $(SRC)/single_phase.f90 \
$(SRC)/saturation_curve.f90 $(SRC)/eosdata.f90 \
$(SRC)/thermo_utils.f90 $(SRC)/binaryplot.f90
@$(call make_object, $(SRC)/binaryplot.f90)
$(ODIR)/thermopack_var.o: $(SRC)/thermopack_var.f90 \
$(SRC)/thermopack_constants.f90 $(SRC)/compdata.f90 \
$(SRC)/utilities.f90 $(SRC)/association_var.f90
@$(call make_object, $(SRC)/thermopack_var.f90)
$(ODIR)/saft_interface.o: $(SRC)/saft_interface.f90 \
$(SRC)/thermopack_constants.f90 $(SRC)/compdata.f90 \
$(SRC)/saft_globals.f90 $(SRC)/thermopack_var.f90 \
$(SRC)/association_var.f90 $(SRC)/assocschemeutils.f90 \
$(SRC)/cubic_eos.f90 $(SRC)/cpa_parameters.f90 \
$(SRC)/pc_saft_parameters.f90 $(SRC)/pc_saft_nonassoc.f90 \
$(SRC)/saftvrmie_interface.f90 $(SRC)/saftvrmie_containers.f90 \
$(SRC)/saftvrmie_parameters.f90 $(SRC)/pets.f90 \
$(SRC)/cbalpha.f90 $(SRC)/saft_association.f90 \
$(SRC)/numconstants.f90 $(SRC)/eos_parameters.f90 \
$(SRC)/cubic.f90 $(SRC)/cbmix.f90 \
$(SRC)/cbhelm.f90 $(SRC)/saft_rdf.f90
@$(call make_object, $(SRC)/saft_interface.f90)
$(ODIR)/association_var.o: $(SRC)/association_var.f90 \
$(SRC)/utilities.f90
@$(call make_object, $(SRC)/association_var.f90)
$(ODIR)/optimizer.o: $(SRC)/optimizer.f90 \
$(SRC)/numconstants.f90 $(SRC)/thermopack_constants.f90
@$(call make_object, $(SRC)/optimizer.f90)
$(ODIR)/puresaturation.o: $(SRC)/puresaturation.f90 \
$(SRC)/nonlinear_solvers.f90 $(SRC)/thermopack_var.f90 \
$(SRC)/eos.f90 $(SRC)/single_phase.f90 \
$(SRC)/thermopack_constants.f90 $(SRC)/numconstants.f90 \
$(SRC)/utilities.f90
@$(call make_object, $(SRC)/puresaturation.f90)
$(ODIR)/compdata.o: $(SRC)/compdata.f90 \
$(SRC)/thermopack_constants.f90 $(SRC)/stringmod.f90
@$(call make_object, $(SRC)/compdata.f90)
$(ODIR)/ph_solver.o: $(SRC)/ph_solver.f90 \
$(SRC)/numconstants.f90 $(SRC)/thermopack_var.f90 \
$(SRC)/tp_solver.f90 $(SRC)/state_functions.f90 \
$(SRC)/thermopack_constants.f90 $(SRC)/thermo_utils.f90 \
$(SRC)/eos.f90 $(SRC)/saturation.f90 \
$(SRC)/puresaturation.f90 $(SRC)/stability.f90 \
$(SRC)/nonlinear_solvers.f90
@$(call make_object, $(SRC)/ph_solver.f90)
$(ODIR)/critical.o: $(SRC)/critical.f90 \
$(SRC)/thermopack_constants.f90 $(SRC)/thermopack_var.f90 \
$(SRC)/eos.f90 $(SRC)/eostv.f90 \
$(SRC)/nonlinear_solvers.f90 $(SRC)/puresaturation.f90 \
$(SRC)/thermo_utils.f90 $(SRC)/eosdata.f90 \
$(SRC)/cubic_eos.f90 $(SRC)/numconstants.f90 \
$(SRC)/utilities.f90 $(SRC)/critical.f90
@$(call make_object, $(SRC)/critical.f90)
$(ODIR)/isolines.o: $(SRC)/isolines.f90 \
$(SRC)/saturation_point_locators.f90 $(SRC)/saturation_curve.f90 \
$(SRC)/thermopack_constants.f90 $(SRC)/thermopack_var.f90 \
$(SRC)/eostv.f90 $(SRC)/eos.f90 \
$(SRC)/thermo_utils.f90 $(SRC)/saturation.f90 \
$(SRC)/tp_solver.f90 $(SRC)/ph_solver.f90 \
$(SRC)/ps_solver.f90
@$(call make_object, $(SRC)/isolines.f90)
$(ODIR)/saturation_curve.o: $(SRC)/saturation_curve.f90 \
$(SRC)/eos.f90 $(SRC)/thermopack_constants.f90 \
$(SRC)/thermopack_var.f90 $(SRC)/numconstants.f90 \
$(SRC)/puresaturation.f90 $(SRC)/saturation.f90 \
$(SRC)/nonlinear_solvers.f90 $(SRC)/critical.f90 \
$(SRC)/thermo_utils.f90 $(SRC)/eostv.f90 \
$(SRC)/eosdata.f90 $(SRC)/solideos.f90
@$(call make_object, $(SRC)/saturation_curve.f90)
$(ODIR)/cubic_eos.o: $(SRC)/cubic_eos.f90 \
$(SRC)/eosdata.f90 $(SRC)/thermopack_constants.f90 \
$(SRC)/thermopack_var.f90 $(SRC)/unifac.f90 \
$(SRC)/utilities.f90
@$(call make_object, $(SRC)/cubic_eos.f90)
$(ODIR)/tp_solver.o: $(SRC)/tp_solver.f90 \
$(SRC)/numconstants.f90 $(SRC)/thermopack_constants.f90 \
$(SRC)/thermopack_var.f90 $(SRC)/eos.f90 \
$(SRC)/thermo_utils.f90 $(SRC)/stability.f90 \
$(SRC)/utilities.f90
@$(call make_object, $(SRC)/tp_solver.f90)
$(ODIR)/unifac.o: $(SRC)/unifac.f90 \
$(SRC)/unifacdata.f90 $(SRC)/thermopack_var.f90 \
$(SRC)/stringmod.f90 $(SRC)/thermopack_constants.f90 \
$(SRC)/utilities.f90
@$(call make_object, $(SRC)/unifac.f90)
$(ODIR)/single_component.o: $(SRC)/single_component.f90 \
$(SRC)/eos_parameters.f90 $(SRC)/eosdata.f90 \
$(SRC)/mbwr_additional.f90 $(SRC)/compdata.f90 \
$(SRC)/ideal.f90
@$(call make_object, $(SRC)/single_component.f90)
$(ODIR)/saft_rdf.o: $(SRC)/saft_rdf.f90 \
$(SRC)/pc_saft_nonassoc.f90 $(SRC)/saftvrmie_hardsphere.f90 \
$(SRC)/saftvrmie_containers.f90 $(SRC)/thermopack_var.f90 \
$(SRC)/cubic_eos.f90 $(SRC)/utilities.f90 \
$(SRC)/saft_globals.f90
@$(call make_object, $(SRC)/saft_rdf.f90)
$(ODIR)/saft_globals.o: $(SRC)/saft_globals.f90 \
$(SRC)/eosdata.f90 $(SRC)/pc_saft_nonassoc.f90 \
$(SRC)/saftvrmie_containers.f90 $(SRC)/cubic_eos.f90 \
$(SRC)/thermopack_constants.f90 $(SRC)/thermopack_var.f90
@$(call make_object, $(SRC)/saft_globals.f90)