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 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939
|
##-------------------------------------------------------------------##
## Makefile for compiling SPLASH and linking with ##
## required libraries ##
## ##
## Written by Daniel Price ##
## University of Exeter, UK, 2004-2008 ##
## Monash University, Australia, 2008- ##
## ##
## requires GNU make (on some systems this is 'gmake' instead ##
## of 'make') ##
## ##
## see the INSTALL file for detailed installation instructions ##
##-------------------------------------------------------------------##
.KEEP_STATE:
KNOWN_SYSTEM=no
SRCDIR=../src
BINDIR=../bin
TESTDIR=../tests
VPATH=$(SRCDIR) $(SRCDIR)/H5Part
SHELL=/bin/bash
#
# some default settings for unix systems
#
FC=
FFLAGS=
#
# change the line below if SPLASH does not find the X11 libraries
# (some settings of the SYSTEM variable for specific machines overwrite this)
#
# X11LIBS= -L/usr/X11R6/lib64 -lX11
X11LIBS= -L/usr/X11R6/lib -lX11
#--------------------------------------------------------------
# here we choose the backend plotting library for splash
# (giza is the default backend for splash v2.x, but can
# still be compiled with PGPLOT, just with disabled features)
#--------------------------------------------------------------
ifneq ($(BACKEND), pgplot)
#-- C A I R O --
GIZADIR= ../giza
VPATH+= $(GIZADIR)/interface/
PLOTLIB= giza-fortran.F90 plotlib_giza.f90
PGPLOTLIBS = -L$(GIZADIR)/lib -lgiza -lcairo -lX11
CFLAGS+= -fPIC
else
#-- P G P L O T --
PLOTLIB= plotlib_pgplot.f90
#
# change the line below depending on where/how you have installed PGPLOT
# (some settings of the SYSTEM variable for specific machines overwrite this)
#
PGPLOTLIBS = -L$(PGPLOT_DIR) -lpgplot -lpng
endif
#--------------------------------------------------------------
#
# If you need the HDF5 libraries, edit the lines below
# possibly adding a -L/libpath/ and a -I/includepath/
#
HDF5LIBS = -L$(HDF5ROOT)/lib -lhdf5
HDF5INCLUDE = -I$(HDF5ROOT)/include
H5PART_LIBS = -L$(H5PART_DIR)/lib -lpH5Part
H5PART_INCLUDE = -I$(H5PART_DIR)/include
#
# this file contains system-dependent routines like getarg, iargc etc.
#
SYSTEMFILE= system_f2003.f90
#
# this can be used to static link the pgplot libraries if all else fails
#
STATICLIBS=
#
# set the parallel flag to 'yes' to compile with openMP directives
#
#PARALLEL=no
ifndef OPENMP
OPENMP=yes
endif
#
# the openMP flags should be set in the lines defining your system type
# (ie. leave line below blank)
OMPFLAGS=
#
# the endian flag can be used to compile the code to read BIG or LITTLE endian data
# some compilers also allow this to be done at runtime (e.g. g95, ifort) by setting
# an environment variable appropriately (e.g. G95_ENDIAN or F_UFMTENDIAN)
#
#ENDIAN=
#ENDIAN='BIG'
#ENDIAN='LITTLE'
#
# default destination for installed binaries
#
DESTDIR=
PREFIX=/usr/
#
# default C compiler
#
ifndef CC
CC = gcc
endif
#--------------------------------------------------------------
# the following are general settings for particular compilers
#
# set the environment variable 'SYSTEM' to one of those
# listed to use the appropriate settings
#
# e.g. in tcsh use
# setenv SYSTEM 'g95'
#
# in bash the equivalent is
# export SYSTEM='g95'
#
#--------------------------------------------------------------
ifeq ($(SYSTEM), gfortran)
# gfortran compiler (part of gcc 4.x.x)
CC = gcc
FC= gfortran
FFLAGS+= -frecord-marker=4
DBLFLAGS= -fdefault-real-8 -fdefault-double-8
SYSTEMFILE= system_f2003.f90
DEBUGFLAG= -Wall -Wextra -pedantic -g -frange-check -fcheck=all -fbacktrace \
-finit-real=NaN #-ffpe-trap=invalid,zero,overflow
OMPFLAGS= -fopenmp
ENDIANFLAGBIG= -fconvert=big-endian
ENDIANFLAGLITTLE= -fconvert=little-endian
KNOWN_SYSTEM=yes
endif
ifeq ($(SYSTEM),g95)
# using the g95 compiler
FC= g95
FFLAGS= -O3 -ffast-math
DBLFLAGS= -r8
SYSTEMFILE= system_f2003.f90 # this is for Fortran 2003 compatible compilers
DEBUGFLAG= -Wall -Wextra -Wno=165 -g -fbounds-check -ftrace=full -freal=NaN
ENDIANFLAGBIG= -fendian='BIG'
ENDIANFLAGLITTLE= -fendian='LITTLE'
PARALLEL= no
CC = gcc -m32
KNOWN_SYSTEM=yes
endif
ifeq ($(SYSTEM),nagf95)
# NAG f95 compiler
FC= f95
FFLAGS= -O3
DBLFLAGS= -r8
SYSTEMFILE= system_unix_NAG.f90
PARALLEL= no
KNOWN_SYSTEM=yes
endif
ifeq ($(SYSTEM),sunf95)
# sun f95 compiler on linux
FC= sunf95
FFLAGS= -fast -ftrap=%none
OMPFLAGS= -openmp
DBLFLAGS= -xtypemap=real:64,double:64
DEBUGFLAG= -g -C -w4 -errtags -erroff=COMMENT_1582,COMMENT_1744 -ftrap=%all
SYSTEMFILE= system_f2003.f90
ENDIANFLAGBIG= -xfilebyteorder=big16:%all
ENDIANFLAGLITTLE= -xfilebyteorder=little16:%all
KNOWN_SYSTEM=yes
endif
ifeq ($(SYSTEM),ifort)
# this is for the intel fortran compiler (version 10)
FC= ifort
FFLAGS= -O3 -nbs -i_dynamic
OMPFLAGS= -openmp
DBLFLAGS= -r8
DEBUGFLAG= -C -g
SYSTEMFILE= system_f2003.f90
ENDIANFLAGBIG= -convert big_endian
ENDIANFLAGLITTLE= -convert little_endian
# or use setenv F_UFMTENDIAN=big or little at runtime
KNOWN_SYSTEM=yes
CC=icc
CFLAGS=-Wall -O3 -fPIC
endif
ifeq ($(SYSTEM),ifort8)
# this is for the intel fortran compiler (version 8)
FC= ifort
FFLAGS= -O3 -Vaxlib -nbs
OMPFLAGS= -openmp
DBLFLAGS= -r8
DEBUGFLAG= -C -g
SYSTEMFILE= system_unix.f90
ENDIANFLAGBIG= -convert big_endian
ENDIANFLAGLITTLE= -convert little_endian
# or use setenv F_UFMTENDIAN=big or little at runtime
KNOWN_SYSTEM=yes
endif
ifeq ($(SYSTEM),pgf90)
# this is for the Portland Group Fortran 90 compiler (tested with version 7.2-5)
FC= pgf90
FFLAGS= -fast -mcmodel=medium -Mbackslash -Ktrap=none
DBLFLAGS= -r8
DEBUGFLAG= -C -g -gopt -Mbounds -Mchkfpstk -Mchkptr -Mchkstk -Mcoff \
-Mdwarf1 -Mdwarf2 -Melf -Mpgicoff -traceback
OMPFLAGS= -mp
SYSTEMFILE= system_unix.f90
ENDIANFLAGBIG= -Mbyteswapio # only works on a little-endian machine
ENDIANFLAGLITTLE=
KNOWN_SYSTEM=yes
endif
ifeq ($(SYSTEM),pathf95)
# this is for the Pathscale f95 compiler
FC= pathf95
FFLAGS= -Ofast -mcmodel=medium
DBLFLAGS= -r8
DEBUGFLAG= -C -g
OMPFLAGS= -openmp
SYSTEMFILE= system_f2003.f90
ENDIANFLAGBIG= -convert big_endian
ENDIANFLAGLITTLE= -convert little_endian
KNOWN_SYSTEM=yes
endif
#--------------------------------------------------------------
#
# the following presets are machine-specific
# (ie. relate to both the compiler and a specific
# installation of pgplot)
#
#--------------------------------------------------------------
ifeq ($(SYSTEM),ukaff1a)
# this is for ukaff1a
FC= xlf90_r #-Wl,-t
FFLAGS= -O3 -qnoescape -qsuffix=f=f90 -qextname
OMPFLAGS= -qsmp=omp
DEBUGFLAG= -C -g
SYSTEMFILE= system_f2003.f90
X11LIBS= -L/usr/X11R6/lib -lX11
PGPLOTLIBS=
STATICLIBS= /home/dprice/pgplot/libpgplot.a /home/dprice/plot/libg2cmodified.a
KNOWN_SYSTEM=yes
# EXT=_temp
endif
ifeq ($(SYSTEM),ukaff1b)
# this is for the new nodes on ukaff
FC= pathf95
FFLAGS= -Ofast -mcmodel=medium
DEBUGFLAG= -C -g
OMPFLAGS= -openmp
SYSTEMFILE= system_f2003.f90
ENDIANFLAGBIG= -convert big_endian
ENDIANFLAGLITTLE= -convert little_endian
X11LIBS= -L/home/dprice/lib -lX11 -lpng
PGPLOTLIBS= -L/home/dprice/pgplot2 -lpgplot
EXT=2 # call the binary something different
KNOWN_SYSTEM=yes
endif
ifeq ($(SYSTEM),zen)
# this is for the intel fortran compiler
FC= ifort
FFLAGS= -O3 -mcmodel=medium -axT -warn all #-ipo #-assume nounderscore
OMPFLAGS= -openmp
DEBUGFLAG= -check all -traceback -g
SYSTEMFILE= system_f2003.f90
ENDIANFLAGBIG= -convert big_endian
ENDIANFLAGLITTLE= -convert little_endian
X11LIBS=-L/home/djp212/lib -lX11
PGPLOTLIBS= -lpng #-L${PGPLOT_DIR} -lpgplot -lpng
STATICLIBS= /home/djp212/pgplot/libpgplot.a
# or use setenv F_UFMTENDIAN=big or little at runtime
# EXT=-dev
KNOWN_SYSTEM=yes
endif
ifeq ($(SYSTEM),mymac)
# these are the settings for a Mac G4 running Panther
# using g95 with pgplot installed via fink
FC= g95
FFLAGS= -O3 -ffast-math
DEBUGFLAG= -Wall -Wextra -Wno=165 -g -fbounds-check -ftrace=full
PGPLOTLIBS= -L/sw/lib/pgplot -lpgplot -lg2c -L/sw/lib -lpng \
-laquaterm -lcc_dynamic -Wl,-framework -Wl,Foundation
SYSTEMFILE= system_f2003.f90
PARALLEL= no
KNOWN_SYSTEM=yes
endif
ifeq ($(SYSTEM),intelmac)
# these are the settings for an Intel Macbook running Tiger
# using gfortran with pgplot installed via fink
FC= gfortran
FFLAGS= -O3 -ffast-math
DEBUGFLAG= -Wall -Wextra -Wno=165 -g -frange-check
PGPLOTLIBS= -L/sw/lib/pgplot -lpgplot -L/sw/lib -lpng \
-laquaterm -Wl,-framework -Wl,Foundation -lSystemStubs
SYSTEMFILE= system_f2003.f90
PARALLEL= no
KNOWN_SYSTEM=yes
endif
ifeq ($(SYSTEM), gfortran_macosx)
# gfortran with pgplot installed via fink
FC= gfortran
FFLAGS= -O3 -Wall
PGPLOTLIBS= -L/sw/lib/pgplot -lpgplot -lg2c -L/sw/lib -lpng \
-laquaterm # -lSystemStubs use this on OS/X Tiger
SYSTEMFILE= system_unix.f90
DEBUGFLAG= -g -frange-check
OMPFLAGS= -fopenmp
ENDIANFLAGBIG= -fconvert=big-endian
ENDIANFLAGLITTLE= -fconvert=little-endian
KNOWN_SYSTEM=yes
endif
ifeq ($(SYSTEM),myg95)
# using the g95 compiler
FC= myg95
FFLAGS= -O3 -ffast-math
X11LIBS= -L/usr/X11R6/lib64 -lX11
PGPLOTLIBS = -L/usr/local64/pgplot -lpgplot -lpng -lg2c
SYSTEMFILE= system_f2003.f90 # this is for Fortran 2003 compatible compilers
ENDIANFLAGBIG= -fendian='BIG'
ENDIANFLAGLITTLE= -fendian='LITTLE'
DBLFLAGS= -r8
PARALLEL= no
KNOWN_SYSTEM=yes
endif
ifeq ($(SYSTEM),maccluster)
# using the g95 compiler on the iMac cluster in Exeter
ifeq ($(MACHTYPE),i386)
# this stuff is for building universal binaries across intel/ppc macs
FC= myg95
EXT= _i386
else
FC= g95
EXT= _ppc
endif
FFLAGS= -O3 -ffast-math -Wall -Wextra -Wno=165
X11LIBS= -L/usr/X11R6/lib -lX11
PGPLOTLIBS= -lSystemStubs
STATICLIBS= /AstroUsers/djp212/pgplot/libpgplot.a
SYSTEMFILE= system_f2003.f90
ENDIANFLAGBIG= -fendian='BIG'
ENDIANFLAGLITTLE= -fendian='LITTLE'
DEBUGFLAG=-fbounds-check -ftrace=full
PARALLEL= no
KNOWN_SYSTEM=yes
endif
ifeq ($(SYSTEM),astromac)
# using the g95 compiler on the Astrophysics cluster in Exeter
FC= g95
FFLAGS= -O3 -ffast-math -Wall -Wextra -Wno=165
X11LIBS= -L/usr/X11R6/lib -lX11
PGPLOTLIBS= -L/opt/local/lib -lpng -lg2c
STATICLIBS= /usr/local/pgplot/libpgplot.a
SYSTEMFILE= system_f2003.f90
ENDIANFLAGBIG= -fendian='BIG'
ENDIANFLAGLITTLE= -fendian='LITTLE'
DBLFLAGS= -r8
DEBUGFLAG=-fbounds-check -ftrace=full
PARALLEL= no
KNOWN_SYSTEM=yes
endif
ifeq ($(SYSTEM),spectrum)
# sun f95 compiler on linux
FC= f95
FFLAGS= -fast -ftrap=%none
OMPFLAGS= -openmp
DBLFLAGS= -xtypemap=real:64,double:64
DEBUGFLAG= -g -C -w4 -errtags -erroff=COMMENT_1582,COMMENT_1744 -ftrap=%all
SYSTEMFILE= system_f2003.f90
ENDIANFLAGBIG= -xfilebyteorder=big16:%all
ENDIANFLAGLITTLE= -xfilebyteorder=little16:%all
X11LIBS = -L/usr/X11R6/lib64 -lX11
KNOWN_SYSTEM=yes
endif
ifeq ($(SYSTEM),cody)
FC= gfortran
FFLAGS= -O3 -Wall
SYSTEMFILE= system_f2003.f90
DBLFLAGS= -fdefault-real-8 -fdefault-double-8
DEBUGFLAG= -g -frange-check
OMPFLAGS= -fopenmp
ENDIANFLAGBIG= -fconvert=big-endian
ENDIANFLAGLITTLE= -fconvert=little-endian
SNFLAGS= -L$(HOME)/tree16/Objfiles/g5 -lsw
CFLAGS = -g -O2 -Wall -I$(HOME)/tree16/include -fbounds-check
CC = gcc
KNOWN_SYSTEM=yes
endif
#
# these are the flags used for linking
#
LDFLAGS+= $(X11LIBS) $(PGPLOTLIBS)
#
# this is an option to change the endian-ness at compile time
# (provided the appropriate flags are specified for the compiler)
#
ifeq ($(ENDIAN), BIG)
FFLAGS += ${ENDIANFLAGBIG}
endif
ifeq ($(ENDIAN), LITTLE)
FFLAGS += ${ENDIANFLAGLITTLE}
endif
# compile in parallel
ifeq ($(PARALLEL),yes)
FFLAGS += $(OMPFLAGS)
else
ifeq ($(OPENMP),yes)
FFLAGS += $(OMPFLAGS)
endif
endif
# compile in double precision
ifeq ($(DOUBLEPRECISION), yes)
FFLAGS += ${DBLFLAGS}
endif
# add debugging flags at compile time
ifeq ($(DEBUG),yes)
FFLAGS += $(DEBUGFLAG)
endif
# rename the executable for development work
ifeq ($(DEV),yes)
EXT= -dev
endif
# link with hdf5 libraries
ifeq ($(HDF5),yes)
CFLAGS += $(HDF5INCLUDE)
LDFLAGS += $(HDF5LIBS)
endif
#
# MPI... no splash doesn't use it
# but sometimes you need to compile
# with the mpi compiler (e.g. to link
# correctly to MPI-HDF5 libraries)
# This just changes the compiler name
# whilst keeping the flags the same
# if MPI is set to "yes"
#
ifeq ($(MPI),yes)
FC= mpif90 -DPARALLEL_IO
CC=mpicc -DPARALLEL_IO
endif
#
# If PGPLOT was compiled with a different compiler to the one used here,
# need to link to the libraries for that compiler. We attempt to do this
# automatically below by looking in the PGPLOT makefile.
#
# If the relevant library is not found, may also need -L/dir/ for the directory
# where the corresponding library is located (e.g. -L/usr/local/gfortran/lib -lgfortran)
#
# (information about what is done here is printed via the checkpgplot target, below)
#
ifeq ($(BACKEND),pgplot)
ifdef PGPLOT_DIR
PGPLOT_COMP=${shell if [ -e $$PGPLOT_DIR/makefile ]; then grep 'FCOMPL=' $$PGPLOT_DIR/makefile | cut -d= -f2; else echo unknown; fi}
ifneq (X$(FC), X) # make sure it is not just accidentally blank
ifneq ($(PGPLOT_COMP), $(FC))
# g77-compiled PGPLOT
ifeq ($(PGPLOT_COMP), g77)
PGPLOTLIBS+=-lg2c
endif
# gfortran-compiled PGPLOT
ifeq ($(PGPLOT_COMP), gfortran)
PGPLOTLIBS+=-lgfortran
endif
# g95-compiled PGPLOT
ifeq ($(PGPLOT_COMP), g95)
PGPLOTLIBS+=-lg95
endif
endif
endif
endif
endif
ifeq ($(FC),gfortran)
GFORTRAN_VERSION=${shell $(FC) -dumpversion | head -1 | awk '{print $$NF}'}
GFORTRAN_VMAJOR:=${shell echo "$(GFORTRAN_VERSION)" | cut -f1 -d.}
GFORTRAN_VMINOR:=${shell echo "$(GFORTRAN_VERSION)" | cut -f2 -d.}
GFORTRAN_GE_4_4:=$(shell [ $(GFORTRAN_VMAJOR) -gt 4 -o \( $(GFORTRAN_VMAJOR) -eq 4 -a $(GFORTRAN_VMINOR) -ge 4 \) ] && echo true)
else
GFORTRAN_GE_4_4:=true
endif
# define the implicit rule to make a .o file from a .f90/.f95 file
# (some Make versions don't know this)
%.o : %.f90
$(FC) $(FFLAGS) -c $< -o $@
%.o : %.F90
$(FC) $(FPPFLAGS) $(FFLAGS) -c $< -o $@
%.o : %.f95
$(FC) $(FFLAGS) -c $< -o $@
%.o : %.c
$(CC) -c $(CPPFLAGS) $(CFLAGS) $(INCLUDES) $< -o $@
# modules must be compiled in the correct order to check interfaces
# really should include all dependencies but I am lazy
SOURCES= $(PLOTLIB) globaldata.f90 asciiutils.f90 \
labels.f90 partutils.f90 transform.f90 setpage.f90 sort.f90 \
prompting.f90 promptlist.f90 geometry.f90 kernels.f90 \
interpolation.f90 plotutils.f90 colourbar.f90 \
colours.f90 colourparts.f90 timing.f90 pagecolours.f90 \
units.f90 limits.f90 geomutils.f90 \
write_data_gadget.f90 write_data_phantom.f90 write_pixmap.f90 \
write_griddata.f90 write_sphdata.f90 \
$(SYSTEMFILE) system_utils.f90 \
cubicsolve.f90 discplot.f90 \
fparser.f90 parsetext.f90 \
exact_function.f90 exact_dustywaves.f90 \
exact_fromfile.f90 exact_Cshock.f90 exact_mhdshock.f90 \
exact_polytrope.f90 exact_rhoh.f90 exact_rochelobe.f90 \
exact_sedov.f90 exact_shock.f90 exact_shock_sr.f90 exact_wave.f90 \
exact_toystar1D.f90 exact_toystar2D.f90 \
exact_densityprofiles.f90 exact_torus.f90 \
exact_ringspread.f90 exact_gresho.f90 exact.f90 shapes.f90 \
allocate.f90 titles.f90 calc_quantities.f90 contours.f90 \
interpolate3D_projection.F90 legends.f90 \
options_render.f90 options_particleplots.f90 \
adjust_data.f90 get_data.f90 \
options_data.f90 options_limits.f90 options_page.f90 \
options_powerspec.f90 \
options_vecplot.f90 options_xsecrotate.f90 pdfs.f90 \
rotate.f90 interpolate1D.f90 interpolate2D.f90 \
interpolate3D.F90 interpolate3D_xsec.f90 \
interpolate3D_proj_geom.F90 \
interpolate3D_opacity.f90 interpolate_vec.f90 \
particleplot.f90 interactive.f90 analysis.f90 \
convert_grid.f90 convert.f90 \
fieldlines.f90 \
powerspectrums.f90 render.f90 \
plotstep.f90 timestepping.f90 \
defaults.f90 menu.f90 \
splash.f90
OBJECTS1 = $(SOURCES:.f90=.o) $(STATICLIBS)
OBJECTS= $(OBJECTS1:.F90=.o)
#
# Now compile with the appropriate data read file
# (move yours to the top so that you can simply type "make")
#
all: ascii gadget vine sphNG ndspmhd srosph dragon seren tipsy
@echo; echo ' SPLASH successfully compiled! ';
@echo; echo ' Use "sudo make install" to copy the binaries to $(DESTDIR)$(PREFIX)/bin'; echo;
ascii: checksystem $(OBJECTS) read_data_ascii.o
$(FC) $(FFLAGS) -o $(BINDIR)/asplash$(EXT) $(OBJECTS) read_data_ascii.o $(LDFLAGS)
#--build universal binary on mac cluster
ifeq ($(SYSTEM), maccluster)
lipo -create $(BINDIR)/asplash_ppc $(BINDIR)/asplash_i386 -output $(BINDIR)/asplash || cp $(BINDIR)/asplash$(EXT) $(BINDIR)/asplash
endif
cp $(BINDIR)/asplash $(BINDIR)/splash
mbatesph: checksystem $(OBJECTS) read_data_mbate.o
$(FC) $(FFLAGS) -o $(BINDIR)/bsplash $(OBJECTS) read_data_mbate.o $(LDFLAGS)
#---h5part reader---
H5PARTSRCC=H5PartF.c H5PartAttribF.c
H5PARTSRCF90=H5Part.f90 H5PartAttrib.f90
H5PARTOBJ=$(H5PARTSRCC:.c=.o) $(H5PARTSRCF90:.f90=.o)
h5part: checksystem checkh5part $(OBJECTS) $(H5PARTOBJ) read_data_h5part.o
$(FC) $(FFLAGS) -o $(BINDIR)/h5splash $(OBJECTS) $(H5PARTOBJ) read_data_h5part.o $(LDFLAGS) $(H5PART_LIBS) $(HDF5LIBS)
read_data_h5part.o: read_data_h5part.f90
$(FC) $(FFLAGS) $(H5PART_INCLUDE) -o $@ -c $<
H5PartF.o: H5PartF.c
$(CC) -c $(CPPFLAGS) $(CFLAGS) $(HDF5INCLUDE) $(H5PART_INCLUDE) $< -o $@
H5PartAttribF.o: H5PartAttribF.c
$(CC) -c $(CPPFLAGS) $(CFLAGS) $(HDF5INCLUDE) $(H5PART_INCLUDE) $< -o $@
#------------------
gadget: checksystem $(OBJECTS) read_data_gadget.o
$(FC) $(FFLAGS) -o $(BINDIR)/gsplash $(OBJECTS) read_data_gadget.o $(LDFLAGS)
gadgetdualendian: checksystem $(OBJECTS) read_data_gadget.o read_data_gadget_otherendian.o
$(FC) $(FFLAGS) -o $(BINDIR)/gsplash $(OBJECTS) read_data_gadget.o read_data_gadget_otherendian.o $(LDFLAGS)
read_data_gadget_otherendian.o: read_data_gadget.o
cat read_data_gadget.f90 | awk "/subroutine read_data/,/end subroutine read_data/ { print }" | sed 's/subroutine read_data/subroutine read_data_otherendian/' > read_data_gadget_otherendian.f90
$(FC) $(FFLAGS) $(ENDIANFLAGBIG) -c read_data_gadget_otherendian.f90 -o read_data_gadget_otherendian.o
gadget_jsb: checksystem $(OBJECTS) read_data_gadget_jsb.o
$(FC) $(FFLAGS) -o $(BINDIR)/gsplash-jsb $(OBJECTS) read_data_gadget_jsb.o $(LDFLAGS)
#---HDF5 gadget read ---
gadgethdf5: gadget_hdf5
gadget_hdf5: checksystem checkhdf5 $(OBJECTS) read_data_gadget_hdf5_utils.o read_data_gadget_hdf5.o
$(FC) $(FFLAGS) -o $(BINDIR)/gsplash-hdf5 $(OBJECTS) read_data_gadget_hdf5_utils.o read_data_gadget_hdf5.o $(LDFLAGS) $(HDF5LIBS)
read_data_gadget_hdf5_utils.o: read_data_gadget_hdf5_utils.c
$(CC) $(CPPFLAGS) $(CFLAGS) $(HDF5INCLUDE) $(H5PART_INCLUDE) -c $< -o $@
#---AMUSE HDF5 read ---
amuse: amuse_hdf5
amuse_hdf5: checksystem checkhdf5 $(OBJECTS) read_data_amuse_hdf5_utils.o read_data_amuse_hdf5.o
$(FC) $(FFLAGS) -o $(BINDIR)/amsplash-hdf5 $(OBJECTS) read_data_amuse_hdf5_utils.o read_data_amuse_hdf5.o $(LDFLAGS) $(HDF5LIBS)
read_data_amuse_hdf5_utils.o: read_data_amuse_hdf5_utils.c
$(CC) $(CFLAGS) $(HDF5INCLUDE) $(H5PART_INCLUDE) -c $< -o $@
#------------------
bauswein: checksystem $(OBJECTS) read_data_bauswein.o
$(FC) $(FFLAGS) -o $(BINDIR)/bsplash $(OBJECTS) read_data_bauswein.o $(LDFLAGS)
dragon: checksystem $(OBJECTS) read_data_dragon.o
$(FC) $(FFLAGS) -o $(BINDIR)/dsplash $(OBJECTS) read_data_dragon.o $(LDFLAGS)
seren: checksystem $(OBJECTS) read_data_seren.o
$(FC) $(FFLAGS) -o $(BINDIR)/srsplash $(OBJECTS) read_data_seren.o $(LDFLAGS)
vine: checksystem $(OBJECTS) read_data_VINE.o
$(FC) $(FFLAGS) -o $(BINDIR)/vsplash $(OBJECTS) read_data_VINE.o $(LDFLAGS)
kitp: checksystem $(OBJECTS) read_data_kitp.o
$(FC) $(FFLAGS) $(LDFLAGS) -o $(BINDIR)/ksplash $(OBJECTS) read_data_kitp.o
ndspmhd: checksystem $(OBJECTS) read_data_ndspmhd.o
$(FC) $(FFLAGS) -o $(BINDIR)/nsplash $(OBJECTS) read_data_ndspmhd.o $(LDFLAGS)
dansph: checksystem $(OBJECTS) read_data_dansph_old.o
$(FC) $(FFLAGS) -o $(BINDIR)/dsplash $(OBJECTS) read_data_dansph_old.o $(LDFLAGS)
foulkes: checksystem $(OBJECTS) read_data_foulkes.o
$(FC) $(FFLAGS) -o $(BINDIR)/fsplash $(OBJECTS) read_data_foulkes.o $(LDFLAGS)
flash_hdf5: checksystem checkhdf5 $(OBJECTS) read_data_flash_hdf5_utils.o read_data_flash_hdf5.o
$(FC) $(FFLAGS) -o $(BINDIR)/fsplash $(OBJECTS) read_data_flash_hdf5_utils.o read_data_flash_hdf5.o $(LDFLAGS)
flashhdf5:
$(MAKE) flash_hdf5 HDF5=yes
read_data_flash_hdf5_utils.o: read_data_flash_hdf5_utils.c
$(CC) -c $(CPPFLAGS) $(CFLAGS) $(HDF5INCLUDE) $(H5PART_INCLUDE) $< -o $@
flash: flashhdf5
jjm: checksystem $(OBJECTS) read_data_jjm.o
$(FC) $(FFLAGS) -o $(BINDIR)/jsplash $(OBJECTS) read_data_jjm.o $(LDFLAGS)
jules: checksystem $(OBJECTS) read_data_jules.o
$(FC) $(FFLAGS) -o $(BINDIR)/jsplash $(OBJECTS) read_data_jules.o $(LDFLAGS)
oilonwater: checksystem $(OBJECTS) read_data_oilonwater.o
$(FC) $(FFLAGS) -o $(BINDIR)/osplash $(OBJECTS) read_data_oilonwater.o $(LDFLAGS)
maddison: checksystem $(OBJECTS) read_data_maddison.o
$(FC) $(FFLAGS) -o $(BINDIR)/msplash $(OBJECTS) read_data_maddison.o $(LDFLAGS)
RSPH: rsph
rsph: checksystem $(OBJECTS) read_data_rsph.o
$(FC) $(FFLAGS) -o $(BINDIR)/rsplash $(OBJECTS) read_data_rsph.o $(LDFLAGS)
scwsph: checksystem $(OBJECTS) read_data_scw.o
$(FC) $(FFLAGS) -o $(BINDIR)/wsplash $(OBJECTS) read_data_scw.o $(LDFLAGS)
snsplash: snsph
snsph: $(OBJECTS) read_data_snsph.o read_data_snsph_utils.o
$(FC) $(FFLAGS) -o $(BINDIR)/snsplash $(OBJECTS) read_data_snsph.o read_data_snsph_utils.o $(LDFLAGS) $(SNFLAGS)
srosph: checksystem $(OBJECTS) read_data_sro.o
$(FC) $(FFLAGS) -o $(BINDIR)/rsplash $(OBJECTS) read_data_sro.o $(LDFLAGS)
spyros: checksystem $(OBJECTS) read_data_spyros.o
$(FC) $(FFLAGS) -o $(BINDIR)/ssplash $(OBJECTS) read_data_spyros.o $(LDFLAGS)
sphNG: checksystem $(OBJECTS) read_data_sphNG.o read_data_sphNG_otherendian.o
$(FC) $(FFLAGS) -o $(BINDIR)/ssplash$(EXT) $(OBJECTS) read_data_sphNG.o read_data_sphNG_otherendian.o $(LDFLAGS)
#--build universal binary on mac cluster
ifeq ($(SYSTEM), maccluster)
lipo -create $(BINDIR)/ssplash_ppc $(BINDIR)/ssplash_i386 -output $(BINDIR)/ssplash || cp $(BINDIR)/ssplash$(EXT) $(BINDIR)/ssplash
endif
sphysics: checksystem $(OBJECTS) read_data_sphysics.o
$(FC) $(FFLAGS) -o $(BINDIR)/dsplash $(OBJECTS) read_data_sphysics.o $(LDFLAGS)
read_data_sphNG_otherendian.o: read_data_sphNG.o
@echo "!--This file is automatically generated during the make: do not edit" > $(SRCDIR)/${@:.o=.f90}
cat $(SRCDIR)/read_data_sphNG.f90 | awk "/subroutine read_data/,/end subroutine read_data/ { print }" | sed 's/subroutine read_data/subroutine read_data_otherendian/' >> $(SRCDIR)/${@:.o=.f90}
$(FC) $(FFLAGS) $(ENDIANFLAGBIG) -c $(SRCDIR)/${@:.o=.f90} -o $@
jjmmulti: checksystem $(OBJECTS) read_data_multiphase.o
$(FC) $(FFLAGS) -o $(BINDIR)/jsplash $(OBJECTS) read_data_jjm_multiphase.o $(LDFLAGS)
tipsy: checksystem $(OBJECTS) read_data_tipsy.o
$(FC) $(FFLAGS) -o $(BINDIR)/tsplash $(OBJECTS) read_data_tipsy.o $(LDFLAGS)
vanaverbeke: checksystem $(OBJECTS) read_data_vanaverbeke.o
$(FC) $(FFLAGS) -o $(BINDIR)/vsplash $(OBJECTS) read_data_vanaverbeke.o $(LDFLAGS)
ucla: checksystem $(OBJECTS) read_data_UCLA.o
$(FC) $(FFLAGS) -o $(BINDIR)/usplash $(OBJECTS) read_data_UCLA.o $(LDFLAGS)
urban: checksystem $(OBJECTS) read_data_urban.o
$(FC) $(FFLAGS) -o $(BINDIR)/usplash $(OBJECTS) read_data_urban.o $(LDFLAGS)
aly: checksystem $(OBJECTS) read_data_aly.o
$(FC) $(FFLAGS) -o $(BINDIR)/splash-aly $(OBJECTS) read_data_aly.o $(LDFLAGS)
sky: ucla
steve: foulkes
sigfried: vanaverbeke
gasoline: tipsy
myall: ndspmhd dansph sphNG srosph gadget mbatesph tipsy ascii
SRCGRID2PDF= $(SYSTEMFILE) globaldata.f90 prompting.f90 transform.f90 \
asciiutils.f90 write_griddata.f90 pdfs.f90 grid2pdf.f90
OBJGRID2PDF= ${SRCGRID2PDF:.f90=.o}
grid2pdf: checksystem $(OBJGRID2PDF)
$(FC) $(FFLAGS) -o $(BINDIR)/$@ $(OBJGRID2PDF)
checksystem:
ifeq ($(KNOWN_SYSTEM), yes)
ifeq ($(ENDIAN), BIG)
@echo "Flags set for conversion to BIG endian"
endif
ifeq ($(ENDIAN), LITTLE)
@echo "Flags set for conversion to LITTLE endian"
endif
ifeq ($(PARALLEL), yes)
@echo "Compiling the PARALLEL code"
else
ifeq ($(OPENMP), yes)
@echo "Compiling the PARALLEL code"
else
@echo "Compiling the SERIAL code"
endif
endif
ifeq ($(FC),gfortran)
ifeq ($(GFORTRAN_GE_4_4),true)
else
${error gfortran v$(GFORTRAN_VERSION) is too old to compile this version of splash: please upgrade your gfortran}
endif
endif
else
@echo ""
@echo " Makefile for splash by Daniel Price "
@echo " -- see INSTALL file for detailed instructions"
@echo ""
@echo " make: ERROR: value of SYSTEM=$(SYSTEM) not recognised..."
@echo " => set the environment variable SYSTEM to one listed "
@echo " in build/Makefile and try again"
@echo ""
@${MAKE} compilers
@$(MAKE) err;
endif
compilers:
@echo "I suggest one of the following, based on detected Fortran compilers..."; echo;
@if type -p ifort > /dev/null; then echo "make SYSTEM=ifort"; fi;
@if type -p pathf90 > /dev/null; then echo "make SYSTEM=pathf90"; fi;
@if type -p pgf90 > /dev/null; then echo "make SYSTEM=pgf90"; fi;
@if type -p xlf90_r > /dev/null; then echo "make SYSTEM=ukaff1a [uses xlf90_r]"; fi;
@if type -p gfortran > /dev/null; then echo "make SYSTEM=gfortran"; fi;
@if type -p g95 > /dev/null; then echo "make SYSTEM=g95"; fi;
@echo "(end of possible selections)"; echo;
checkpgplot:
ifeq (X${PGPLOT_DIR}, X)
@echo; echo "ERROR: PGPLOT_DIR should be set before compiling splash"; echo; ${MAKE} err;
else
@if [ -d $$PGPLOT_DIR ]; then echo; echo "PGPLOT_DIR=$$PGPLOT_DIR"; echo; else echo; echo "ERROR: Directory given by PGPLOT_DIR=$$PGPLOT_DIR does not exist"; echo; ${MAKE} err; fi;
endif
ifneq ($(PGPLOT_COMP),$(FC))
@echo; echo "*** WARNING: PGPLOT appears to have been compiled with a different Fortran"; echo " compiler (${PGPLOT_COMP}) to the one you are using to compile SPLASH (${FC}),"; echo " so may need to link to the relevant compiler libraries ***";
# g77-compiled PGPLOT
@if [ "${PGPLOT_COMP}" = "g77" ]; then echo " [Adding -lg2c to the link flags for g77-compiled PGPLOT]"; fi;
# gfortran-compiled PGPLOT
@if [ "${PGPLOT_COMP}" = "gfortran" ]; then echo " [Adding -lgfortran to the link flags for gfortran-compiled PGPLOT]"; fi;
# g95-compiled PGPLOT
@if [ "${PGPLOT_COMP}" = "g95" ]; then echo " [Adding -lg95 to the link flags for g95-compiled PGPLOT]"; fi;
@echo
# else
# @echo "PGPLOT was compiled with ${PGPLOT_COMP}";
endif
checkh5part: checkhdf5
ifeq (X${H5PART_DIR}, X)
@echo; echo "ERROR: H5PART_DIR should be set before compiling splash with h5part read/write"; echo; ${MAKE} err;
else
@if [ -d $$H5PART_DIR ]; then echo; echo "H5PART_DIR=$$H5PART_DIR"; echo; else echo; echo "ERROR: Directory given by H5PART_DIR=$$H5PART_DIR does not exist"; echo; ${MAKE} err; fi;
endif
checkhdf5:
ifeq (X${HDF5ROOT}, X)
@echo; echo "ERROR: HDF5ROOT should be set before compiling splash with HDF5 utilities"; echo; ${MAKE} err;
else
@if [ -d $$HDF5ROOT ]; then echo; echo "HDF5ROOT=$$HDF5ROOT"; echo; else echo; echo "ERROR: Directory given by HDF5ROOT=$$HDF5ROOT does not exist"; echo; ${MAKE} err; fi;
endif
#
# install option, copies any binaries compiled to /usr/local/bin/
# run `make' first, then `make install'. Could in principle
# have install compile it as well, but environment variables
# will not be defined if "make" is run using sudo, so better
# to do the two separately
#
install: destdircheck installcheck
@cd $(BINDIR); for x in *splash*; do echo "copying $$x -> $(DESTDIR)$(PREFIX)/bin/$$x"; cp $$x $(DESTDIR)$(PREFIX)/bin/; done;
@echo; echo 'installation complete';
installcheck:
@if test -e $(BINDIR)/asplash && test -e $(BINDIR)/gsplash; then echo; \
echo 'compiled binaries install to $(DESTDIR)$(PREFIX)/bin'; \
echo '(use "sudo make install" if Permission denied)'; \
echo; else echo;\
echo 'run "make" first, followed by "sudo make install"'; echo;\
$(MAKE) err; fi
destdircheck: installcheck
@if test -d $(DESTDIR)$(PREFIX)/bin; then echo $(DESTDIR)$(PREFIX)/bin exists and is a directory; else \
echo; echo "*** ERROR in make install ***"; echo "$(DESTDIR)$(PREFIX)/bin is not a valid directory"; echo;\
$(MAKE) err; fi;
installclean: destdircheck
@for x in $(DESTDIR)$(PREFIX)/bin/?splash; do rm $$x; done;
distclean: installclean
cleanall: clean cleangiza installclean
err:
$(error aborting);
## other stuff
plotlib_pgplot.o: checkpgplot
plotlib_giza.o : giza-fortran.o
giza-fortran.o : giza-fortran.F90 $(GIZADIR)/lib/libgiza.a
$(FC) $(FFLAGS) -I$(GIZADIR)/include/ -c $< -o $@
.PHONY: gizabuild libgiza
libgiza: gizabuild
$(GIZADIR)/lib/libgiza.a: gizabuild
gizabuild:
@echo "Compiling giza..."
$(MAKE) $(MAKECMDFLAGS) -C $(GIZADIR) libgiza CC="$(CC)" CFLAGS="$(CFLAGS)" CPPFLAGS="$(CPPFLAGS)"
docs: doc
doc:
cd ../docs; pdflatex splash; pdflatex splash
htmldocs: htmldoc
htmldoc: doc cleanhtmldocs
cd ../docs; \
hevea png.hva splash.tex -o html/splash.html; \
hevea png.hva splash.tex -o html/splash.html; \
bibhva html/splash; \
sed 's/et~al./et al./g' html/splash.hbbl > html/tmp.hbbl; \
mv html/tmp.hbbl html/splash.hbbl; \
hevea png.hva splash.tex -o html/splash.html; \
hevea png.hva splash.tex -o html/splash.html; \
imagen -png -pdf -mag 2000 html/splash; \
cd html; hacha -tocbis splash.html; \
rm *.gif splash.h{tml,aux,toc,bbl} splash.blg splash.image.tex ../splash.image.out;
cleanhtmldocs:
rm -f ../docs/html/*.h{tml,toc,bbl,aux} \
../docs/html/*.image* ../docs/html/*.gif \
../docs/html/splash*.{png,css,blg};
rm -f ../docs/splash.image.out ../docs/splash.out
tar:
tar cf splash.tar Makefile $(SOURCES) read_data*.f90
targz:
tar cf splash.tar Makefile $(SOURCES) read_data*.f90
gzip splash.tar
## unit tests of various modules as I write them
test1: interpolate3D_projection.o interpolate3D_xsec.o test_interpolate3D.o
$(FC) $(FFLAGS) $(LDFLAGS) -o $(BINDIR)/test_interpolation3D $(TESTDIR)/test_interpolate3D.o interpolate3D_projection.o interpolate3D_xsec.o
test2: transform.o $(TESTDIR)//test_transform.o
$(FC) $(FFLAGS) $(LDFLAGS) -o $(BINDIR)/test_transform $(TESTDIR)/test_transform.o transform.o
test3: fieldlines.o $(TESTDIR)//test_fieldlines.o
$(FC) $(FFLAGS) $(LDFLAGS) -o $(BINDIR)/test_fieldlines $(TESTDIR)/test_fieldlines.o fieldlines.o
test_slicer: interpolate3D_projection.o interpolate3D_xsec.o test_slicer3D.o
$(FC) $(FFLAGS) $(LDFLAGS) -o $(BINDIR)/test_slicer3D $(TESTDIR)/test_slicer3D.o interpolate3D_projection.o interpolate3D_xsec.o
test_prompt: prompting.o test_prompting.o
$(FC) $(FFLAGS) $(LDFLAGS) -o $(BINDIR)/test_prompt prompting.o test_prompting.o
test-parse: $(PLOTLIB) asciiutils.o fparser.o parsetext.o $(TESTDIR)/test-parsetext.o
$(FC) $(FFLAGS) -o $(BINDIR)/test-parse giza-fortran.o plotlib_giza.o fparser.o asciiutils.o parsetext.o $(TESTDIR)/test-parsetext.o $(LDFLAGS)
#
#--code dependencies: MAY BE INCOMPLETE - I generate this automatically every so often
#
include .depends
clean:
rm -f *.o *.mod $(BINDIR)/?splash $(BINDIR)/splash
cleangiza:
ifneq ($(BACKEND),pgplot)
${MAKE} -C $(GIZADIR) clean
endif
|