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 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015
|
# $Header: /cvsroot/nco/nco/bld/Makefile,v 1.552 2010/06/27 18:06:28 zender Exp $ -*-makefile-*-
# Purpose: GNU Makefile for NCO module nco
# Requires GNU Make---AT&T Make chokes on GNU syntax
# Copyright (C) 1994--2010 Charlie Zender
# License: GNU General Public License (GPL) Version 3
# See http://www.gnu.org/copyleft/gpl.html for full license text
# Quickie test copies:
# scp ~/nco/bld/Makefile dust.ess.uci.edu:nco/bld
# scp ~/nco/bld/Makefile esmf.ess.uci.edu:nco/bld
# scp ~/nco/bld/Makefile greenplanet.ps.uci.edu:nco/bld
# scp ~/nco/bld/Makefile soot.ess.uci.edu:nco/bld
# Development machines default configuration:
# netCDF4, UDUnits2: ashes, elnino, virga, neige
# netCDF3: sand
# netCDF3, OPeNDAP: soot, esmf
# netCDF3, configure: clay
# Usage (testing):
# make tst # Vanilla regression test
# make FL_FMT=netcdf4 tst # netCDF4 regression test
# make MPI_PRC=3 tst # MPI regression test
# make MPI_PRC=3 bm # MPI benchmarks
# make THR_NBR=2 tst # OpenMP regression test
# make THR_NBR=2 bm # OpenMP benchmarks
# make NETCDF4=Y # netCDF4 features
# make PNETCDF=Y # pnetCDF features
# make ZNETCDF=Y # znetCDF features
# Usage (Compilation):
# cd ~/nco/bld;make;cd - # Default build
# cd ~/nco/bld;make cln bin_cln;cd - # Clean all dependencies for fresh build
# cd ~/nco/bld;make dir all; cd - # Create target directories then build
# cd ~/nco/bld;make dbg;cd - # Print make diagnostics
# cd ~/nco/bld;make DAP_OPENDAP=Y;cd - # DAP support via OPeNDAP
# cd ~/nco/bld;make GSL=Y;cd - # GSL support
# cd ~/nco/bld;make lib_cln;cd - # Clean libraries
# cd ~/nco/bld;make MPI=Y;cd - # MPI support
# cd ~/nco/bld;make MPI_FAKE=Y;cd - # Spoof MPI support
# cd ~/nco/bld;make OMP=Y;cd - # OpenMP support
# cd ~/nco/bld;make OPTS=D;cd - # "Debugging": Enough symbols for debugging
# cd ~/nco/bld;make OPTS=O;cd - # "Optimize": For production (includes symbols)
# cd ~/nco/bld;make OPTS=R;cd - # "Regular": No optimization or debugging
# cd ~/nco/bld;make OPTS=X;cd - # "eXtreme": All debugging switches available
# cd ~/nco/bld;make sys;cd - # Install in /usr/local (must sudo)
# cd ~/nco/bld;make SZ=Y;cd - # Szip support
# cd ~/nco/bld;make UDUNITS=Y;cd - # UDUnits support
# cd ~/nco/bld;make UDUNITS2=Y;cd - # UDUnits2 supportXF
# cd ~/nco/bld;make --jobs=4;cd - # Parallel make
# Normal (Linux) developer systems:
# cd ${HOME}/nco/bld;make OMP=Y CUDA=Y OPTS=D NETCDF4=Y UDUNITS2=Y allinone;cd - # givre
# cd ${HOME}/nco/bld;make OMP=Y OPTS=D NETCDF4=Y UDUNITS2=Y allinone;cd - # givre, neige
# cd ${HOME}/nco/bld;make OMP=Y DAP_OPENDAP=N OPTS=D NETCDF4=N UDUNITS2=Y allinone;cd - # glace, virga
# mpi-selector --set openmpi_gcc-1.3.3 # Then use /sopt/netcdf/netcdf3-gcc-serial serial libraries
# mpi-selector --set mpich_pgi_1.2.7p1 # After compiling
# cd ${HOME}/nco/bld;ANTLR=/sopt/gfortran_g++/bin/antlr ANTLR_ROOT=/sopt/gfortran_g++ CNK=N SZ_LIB=/sopt/lib UDUNITS_INC=/sopt/include UDUNITS_LIB=/sopt/lib make OMP=Y DAP_OPENDAP=N OPTS=D NETCDF4=N SZ=Y UDUNITS2=N allinone;cd - # greenplanet gcc
# cd ${HOME}/nco/bld;ANTLR=/sopt/ifort_icpc/bin/antlr ANTLR_ROOT=/sopt/ifort_icpc CNK=N SZ_LIB=/sopt/lib UDUNITS_INC=/sopt/include UDUNITS_LIB=/sopt/lib make OMP=Y DAP_OPENDAP=N OPTS=D NETCDF4=Y SZ=Y UDUNITS2=N allinone;cd - # greenplanet intel
# cd ${HOME}/nco/bld;ANTLR=/sopt/pgf90_pgcc/bin/antlr ANTLR_ROOT=/sopt/pgf90_pgcc CNK=N SZ_LIB=/sopt/lib UDUNITS_INC=/sopt/include UDUNITS_LIB=/sopt/lib make OMP=Y DAP_OPENDAP=N OPTS=D NETCDF4=N SZ=Y UDUNITS2=N allinone;cd - # greenplanet pgi
# cd ${HOME}/nco/bld;make OMP=Y DAP_OPENDAP=N OPTS=D NETCDF4=N UDUNITS2=Y allinone;cd - # pbs
# cd ${HOME}/nco/bld;make OMP=Y DAP_OPENDAP=N OPTS=D NETCDF4=N UDUNITS2=Y allinone;cd - # grele
# cd ${HOME}/nco/bld;make OMP=N DAP_OPENDAP=N OPTS=D NETCDF4=N UDUNITS2=N USR_TKN='-DNCO_GSL_MINOR_VERSION=4' allinone;cd - # sand, tephra
# cd ${HOME}/nco/bld;make OMP=Y DAP_OPENDAP=N OPTS=D NETCDF4=N UDUNITS2=N allinone;cd - # silt, clay
# cd ${HOME}/nco/bld;NETCDF_INC='/usr/include/netcdf-3' NETCDF_LIB='/usr/lib64' make GSL=N OMP=N DAP_OPENDAP=N OPTS=D NETCDF4=N UDUNITS=N allinone;cd - # snow
# cd ${HOME}/nco/bld;make OMP=N DAP_OPENDAP=Y OPTS=D NETCDF4=N UDUNITS2=N USR_TKN='-DNEED_NC_INQ_FORMAT' allinone;cd - # snow w/OPeNDAP
# cd ${HOME}/nco/bld;make OPTS=D USR_TKN='-DNEED_NC_INQ_FORMAT' allinone;cd -
# 64-bit ABI on UCI MPC:
# cd ${HOME}/nco/bld;env ANTLR='/software/antlr/bin/antlr' ANTLR_ROOT='/software/antlr' UDUNITS_INC='/software/udunits/include' UDUNITS_LIB='/software/udunits/lib' make --jobs=1 ABI=64 allinone;cd -
# 64-bit ABI on UCI IPCC:
# cd ${HOME}/nco/bld;env ANTLR='/usr/local/pgi/bin/antlr' ANTLR_ROOT='/usr/local/pgi' make --jobs=1 ABI=64 allinone;cd -
# 64-bit ABI netCDF3 on NCAR AIX systems (bluefire):
# cd ~/nco/bld;ANTLR='/contrib/antlr-2.7.7/bin/antlr' ANTLR_ROOT='/contrib/antlr-2.7.7' GSL_INC='/contrib/gsl-1.12/include' GSL_LIB='/contrib/gsl-1.12/lib' NETCDF_LIB='/usr/local/lib64/r4i4' UDUNITS_INC='/contrib/udunits-1.12.9/include' UDUNITS_LIB='/contrib/udunits-1.12.9/lib' make --jobs=1 DAP_OPENDAP=N OPTS=D allinone ABI=64;cd -
# 64-bit ABI netCDF4 on NCAR AIX systems (bluefire):
# cd ~/nco/bld;ANTLR='/contrib/antlr-2.7.7/bin/antlr' ANTLR_ROOT='/contrib/antlr-2.7.7' CURL_LIB='/contrib/curl/lib' GSL_INC='/contrib/gsl-1.12/include' GSL_LIB='/contrib/gsl-1.12/lib' HDF5_ROOT='/contrib/hdf5-1.8.4-patch1_sequential' NETCDF_ROOT='/contrib/netcdf-4.1.1_sequential' SZ_LIB='/contrib/szip/lib' UDUNITS_INC='/contrib/udunits-1.12.9/include' UDUNITS_LIB='/contrib/udunits-1.12.9/lib' make --jobs=1 NETCDF4=Y OPTS=D SZ=Y allinone ABI=64;cd -
# Cygwin on Windows Vista systems:
# cd ~/nco/bld;ANTLR='antlr' make --jobs=1 GSL=Y OPTS=D NETCDF4=Y UDUNITS2=Y allinone;cd -
# Top-level tokens defining directory structure
# These tokens may be over-ridden by environment variables or when invoking make, e.g., make DAP_OPENDAP=Y
MY_BLD_DIR := ../bld
ifndef PVM_ARCH
PVM_ARCH := $(shell ${MY_BLD_DIR}/pvmgetarch)
endif
ifndef MY_BIN_DIR
MY_BIN_DIR := ../bin
endif
ifndef MY_LIB_DIR
MY_LIB_DIR := ../lib
endif
ifndef MY_MAN_DIR
MY_MAN_DIR := ../man
endif
ifndef MY_OBJ_DIR
MY_OBJ_DIR := ../obj
endif
MY_BM_DIR := ../bm
MY_DAT_DIR := ../data
MY_DBN_DIR := ../debian
MY_DOC_DIR := ../doc
MY_DPN_DIR := ${MY_OBJ_DIR}
MY_SRC_DIR := ../src/nco
MY_INC_DIR := ${MY_SRC_DIR}
NCO_CXX_SRC_DIR := ${MY_SRC_DIR}/../nco_c++
NCOXX_SRC_DIR := ${MY_SRC_DIR}/../nco++
# Primary tokens which determine build options
# Specify non-default when invoking make, e.g. make DAP_OPENDAP=Y
ifndef ${ABI}
# 32- vs. 64-bit ABI: 32=32-bit mode, 64=64-bit mode (default) if available
ABI := 64
endif # endif ABI
ifndef ${CCACHE}
CCACHE := N
endif # CCACHE
ifndef CNK
# Use newer netCDF4.1 chunking API
CNK := Y
endif # endif CNK
ifndef ${CUDA}
CUDA := N
endif # CUDA
ifndef DAP_NETCDF
DAP_NETCDF := Y
endif # DAP_NETCDF
ifndef DAP_OPENDAP
DAP_OPENDAP := N
endif # DAP_OPENDAP
ifndef ${DBG}
# Debugging token N=No (default) Y=Yes
DBG := N
endif # endif DBG
ifdef FL_FMT
# Pass this netCDF4 argument to nco_bm.pl
FL_FMT_SNG := "--fl_fmt=${FL_FMT}"
else # endif FL_FMT
FL_FMT_SNG :=
endif # endif FL_FMT
ifndef GCC_RCH_ARG
GCC_RCH_ARG :=
endif # endif GCC_RCH_ARG
ifndef GSL
# Use GSL functionality
GSL := Y
endif # endif GSL
ifndef ICC_RCH_ARG
ICC_RCH_ARG :=
endif # endif ICC_RCH_ARG
ifndef I18N
I18N := N
endif
ifndef NCO_YY_PFX
NCO_YY_PFX := nco_yy
endif
ifndef MK_DPN
MK_DPN = ${CPP} -M # NB: Recursive expansion required
MK_DPN_CXX = ${CXX} -M # NB: Recursive expansion required
endif # endif MK_DPN
ifndef ${MPI} # MPI
MPI := N
endif # endif MPI
ifndef ${MPI_FAKE} # MPI
MPI_FAKE := N
endif # endif MPI_FAKE
ifndef NCO_VRS
# Used for RPM building
NCO_VRS := $(shell cat ${MY_DOC_DIR}/VERSION)
endif
ifndef ${NETCDF4} # netCDF4 support
NETCDF4 := N
endif # endif NETCDF4
ifndef NETCDF_ROOT
NETCDF_ROOT := /usr/local
endif
ifndef NETCDF4_ROOT
NETCDF4_ROOT := ${NETCDF_ROOT}
endif
ifndef NETCDF_INC
NETCDF_INC := ${NETCDF_ROOT}/include # Directory containing netcdf.h
endif
ifndef NETCDF_LIB
NETCDF_LIB := ${NETCDF_ROOT}/lib # Directory containing libnetcdf.a
endif
ifndef ${OMP} # OpenMP
OMP := Y
endif # endif OMP
ifndef OPTS
OPTS := O
endif
ifndef PGI_RCH_ARG
PGI_RCH_ARG :=
endif # endif PGI_RCH_ARG
ifndef ${PNETCDF} # pnetCDF support
PNETCDF := N
endif # endif PNETCDF
ifndef PSC_RCH_ARG
PSC_RCH_ARG :=
endif # endif PSC_RCH_ARG
ifndef RPM
RPM := N
endif # endif RPM
ifndef STC
# Created statically linked executable
STC := N
endif
ifndef SZ
# Link to Szip library
SZ := N
endif
ifndef UDUNITS
# Use UDUnits functionality
UDUNITS := Y
endif
ifndef UDUNITS2
# Use UDUnits2 functionality
UDUNITS2 := N
endif
ifndef UNAMES
UNAMES := $(shell uname -s)
endif
ifndef USR_TKN
USR_TKN :=
endif # endif USR_TKN
ifndef VRS_SNG
VRS_SNG := $(shell date +%Y%m%d)
endif # endif VRS_SNG
ifndef ${ZNETCDF} # znetcdf support
ZNETCDF := N
endif # endif ZNETCDF
# Derived-tokens based on primary tokens
# These tokens should not be altered by hand
# NB: CPP_TKN is recursively expanded variable, define only when components are ready
CPP_TKN = ${USR_TKN} -D${PVM_ARCH} -DNO_NETCDF_2 -DVERSION='${VRS_SNG}' -DHOSTNAME='${HOST}' -DUSER='${USER}' -DNCO_ABORT_ON_ERROR
ifndef LFLAGS # Flags for Flex (Lex)
LFLAGS := -P${NCO_YY_PFX}
endif
ifndef YFLAGS # Flags for Bison (Yacc)
YFLAGS := -d --name-prefix=${NCO_YY_PFX}
endif
# Default NCO build: DAP_NETCDF, DAP_OPENDAP, NETCDF4, PNETCDF, and ZNETCDF clauses may overwrite this
NC_LDFLAGS := -L${NETCDF_LIB}
NC_LIBS := -lnetcdf
ifeq (${DAP_NETCDF},Y)
# Build NCO as DAP-enabled clients with netCDF-provided DAP
ifndef DAP_NETCDF_ROOT
# Directory containing libcurl.a
DAP_NETCDF_ROOT := /usr
endif # DAP_NETCDF_ROOT
NC_LDFLAGS := -L${DAP_NETCDF_ROOT}/lib
# netCDF 4.0.2+:
NC_LIBS := -lcurl
endif # end DAP_NETCDF
ifeq (${DAP_OPENDAP},Y)
# Build NCO as DAP-enabled clients with OPe NDAP
# fxm: OPeNDAP bloats executables, should automagically enable stripping?
# http://www.opendap.org/user/guide-html/guide_28.html
ifndef DAP_OPENDAP_ROOT
# Directory containing libdap.a, libnc-dap.a
DAP_OPENDAP_ROOT := /usr/local
endif # DAP_OPENDAP_ROOT
NC_LDFLAGS := -L${DAP_OPENDAP_ROOT}/lib
# NB: nc-dods, dap++ prior to version 3.5.X must be linked twice!
# Required libraries for
# DODS 3.3-:
# NC_LIBS := -lnc-dods -ldap++ -lnc-dods -ldap++ -lwww -lz -lrx
# DODS 3.4.X:
# NC_LIBS := -lnc-dods -ldap++ -lnc-dods -ldap++ -lxml2 -lcurl -lpthread -ldl -lz
# OPeNDAP 3.5.0-3.5.1:
# NC_LIBS := -lnc-dap -ldap++ -lxml2 -lcurl
# OPeNDAP 3.5+:
NC_LIBS := -lnc-dap -ldap -lxml2 -lcurl
# In addition, AIX OPeNDAP requires these libraries...
ifneq (${null},$(findstring AIX,${PVM_ARCH}))
NC_LIBS += -lcrypto -liconv -lssl -lz
endif # end AIX
# Get netCDF from OPeNDAP version
NETCDF_INC=${DAP_OPENDAP_ROOT}/include/libnc-dap
NETCDF_LIB=${DAP_OPENDAP_ROOT}/lib
endif # end DAP_OPENDAP
# Internationalize NCO with i18n features
ifeq (${I18N},Y)
MY_SHR_DIR := ${HOME}/share
MY_ES_DIR := ${MY_SHR_DIR}/locale/es/LC_MESSAGES
MY_FR_DIR := ${MY_SHR_DIR}/locale/fr/LC_MESSAGES
endif
# Message Passing Interface (MPI)
ifeq (${MPI_FAKE},Y)
# MPI_FAKE instructs make to compile mpnc*.c operators without defining ENABLE_MPI
# Resulting executables use UP or SMP code not MPI code
# This tests compile, link, execution of MPI mpnc*.c code without using any MPI calls
MPI := Y
endif # !MPI_FAKE
ifdef MPI_PRC
# MPI_PRC tells test scripts how many MPI processes to spawn
# Pass this MPI argument to nco_bm.pl
MPI_PRC_SNG := "--mpi_prc=${MPI_PRC}"
# MPI_PRC implies MPI
MPI := Y
else # !MPI_PRC
MPI_PRC_SNG :=
endif # !MPI_PRC
ifeq (${NETCDF4},Y)
# Enable netCDF4 functionality
ifndef HDF5_ROOT
HDF5_ROOT := ${NETCDF4_ROOT}
endif
ifndef HDF5_INC
HDF5_INC := ${HDF5_ROOT}/include # Directory containing hdf5.h
endif
ifndef HDF5_LIB
HDF5_LIB := ${HDF5_ROOT}/lib # Directory containing libhdf5.a
endif
# fxm: Temporary kludge: Machines with MPI_ROOT set are assumed to have parallel filesystems for NCO builds
ifdef MPI_ROOT
HDF5_INC += -I${MPI_ROOT}/include # Directory containing mpi.h
HDF5_LIB += ${MPI_ROOT}/lib64 # Directory containing libmpi.a
endif # !MPI_ROOT
NETCDF_INC := ${NETCDF4_ROOT}/include
NETCDF_LIB := ${NETCDF4_ROOT}/lib
NC_LDFLAGS := -L${NETCDF_LIB} $(addprefix -L,${HDF5_LIB})
NC_LIBS := -lnetcdf -lhdf5_hl -lhdf5 -lz ${NC_LIBS}
ifdef MPI_ROOT
NC_LIBS += -lmpi
endif # !MPI_ROOT
ifdef CURL_LIB
NC_LDFLAGS += -L${CURL_LIB}
endif # end
ifeq (${SZ},Y)
ifndef SZ_LIB
SZ_LIB := /usr/lib # Directory containing libsz.a
endif
NC_LDFLAGS += -L${SZ_LIB}
NC_LIBS += -lsz
endif # !SZ
ifneq (${HDF5_INC},${NETCDF_INC})
NETCDF_INC += -I${HDF5_INC}
endif # end
endif # endif NETCDF4
ifeq (${PNETCDF},Y)
# Enable pnetCDF functionality
NC_LDFLAGS := -L${NETCDF_LIB}
NC_LIBS += -lpnetcdf
endif # endif PNETCDF
ifeq (${ZNETCDF},Y)
# Enable znetcdf functionality
NC_LDFLAGS := -L${NETCDF_LIB}
NC_LIBS += -lznetcdf
endif # endif ZNETCDF
ifneq (${null},$(findstring LINUX,${PVM_ARCH}))
# Decide among the plethora of Linux compilers
ifndef LINUX_CXX
# C++ compiler for Linux
LINUX_CXX := g++
#LINUX_CXX := como
#LINUX_CXX := icpc
#LINUX_CXX := insure
#LINUX_CXX := pathCC
#LINUX_CXX := pgCC
endif # endif LINUX_CXX
ifndef LINUX_CC
# C compiler for Linux
LINUX_CC := gcc -std=c99 -pedantic -D_BSD_SOURCE -D_POSIX_SOURCE
#LINUX_CC := como --c99
#LINUX_CC := icc -std=c99 -D_BSD_SOURCE -D_POSIX_SOURCE
#LINUX_CC := insure
#LINUX_CC := nvcc
#LINUX_CC := pathcc -std=c99
#LINUX_CC := pgcc -c9x
endif # endif LINUX_CC
ifndef LINUX_FC
# Fortran compiler for Linux
#LINUX_FC := g95
LINUX_FC := gfortran
#LINUX_FC := ifort
#LINUX_FC := lf95
#LINUX_FC := pathf95
#LINUX_FC := pgf90
endif # endif LINUX_CC
endif # endif LINUX
# OpenMP
ifeq (${OMP},Y)
ifdef THR_NBR
# Pass this OpenMP argument to nco_bm.pl
THR_NBR_SNG := "--thr_nbr=${THR_NBR}"
else # endif THR_NBR
THR_NBR_SNG :=
endif # endif THR_NBR
endif # endif OMP
ifeq (${RPM},Y)
# rpm command, and thus RPM variables only guaranteed in RedHat Linux
# Use recursive expansion so rpm command is not executed on non-RPM systems
MDL_RPM_NST_NM = $(shell rpm -qa | grep nco-) # Name of installed package
# MDL_RPM_PRV_NM = $(shell rpm -qp foo) # Name of package provided by specified RPM
endif # endif RPM
ifeq (${PVM_ARCH},WIN32)
BNR_SFX := .exe
else
BNR_SFX := ${null}
endif
ifeq (${GSL},Y)
# Build GSL-enabled NCO
# Place GSL block after DAP blocks for both to work together
ifdef GSL_INC
GSL_INC := -I${GSL_INC}
else
GSL_INC := $(shell gsl-config --cflags)
endif # endif GSL_INC
ifdef GSL_LIB
GSL_LIB := -L${GSL_LIB}
else
GSL_LIB := $(shell gsl-config --libs)
endif # endif GSL_LIB
NETCDF_INC += ${GSL_INC}
NC_LDFLAGS += ${GSL_LIB}
NC_LIBS += -lgsl
endif # end if GSL
ifeq (${UDUNITS2},Y)
UDUNITS := Y
endif # end if UDUNITS
ifeq (${UDUNITS},Y)
# Build UDUnits-enabled NCO
# Place UDUNITS block after DAP blocks for both to work together
ifndef UDUNITS_INC
UDUNITS_INC := /usr/local/include # Directory containing udunits.h
endif
ifndef UDUNITS_LIB
UDUNITS_LIB := /usr/local/lib # Directory containing libudunits.a
endif
ifneq (${UDUNITS_INC},${NETCDF_INC})
NETCDF_INC += -I${UDUNITS_INC}
endif # end
ifneq (${UDUNITS_LIB},${NETCDF_LIB})
NC_LDFLAGS += -L${UDUNITS_LIB}
endif # end if
ifeq (${UDUNITS2},Y)
NC_LIBS += -ludunits2
else
NC_LIBS += -ludunits
endif # end if UDUNITS2
endif # end if UDUNITS
# TMP_* and NCO_* are required to play nicely with DAP flags
NCO_LDFLAGS := -L${MY_LIB_DIR}
NCO_LIBS := -lnco
TMP_LDFLAGS := ${NCO_LDFLAGS} ${NC_LDFLAGS}
TMP_LIBS := ${NCO_LIBS} ${NC_LIBS}
# NB: Do NOT add comment lines, e.g., # This is a comma, to character definitions
null :=
space := ${null} ${null}
comma := ,
newline := \n
# '/' and '+' appear in filenames ('/' is directory separator)
# Operating on these with Perl is problematic since they are special Rx characters
# We replace `/' and '+' by non-special Rx's, call perl, then demangle
# Unique character(s) to substitute for '/' and '+' before passing to perl Rx
slash_rx := cszzsc
plus_rx := xdikmj
# Unique character(s) to replace by ${slash_rx} before passing to perl regex
slash := /
plus := +
MY_OBJ_DIR_RX := $(subst ${slash},${slash_rx},${MY_OBJ_DIR})
MY_DPN_DIR_RX := $(subst ${slash},${slash_rx},${MY_DPN_DIR})
# Directories to search for source files
MDL_PTH := ./ ${MY_SRC_DIR}
# Find all C, C++, CUDA files in given directory
FIND_FNC = $(wildcard ${dir}/*.cc ${dir}/*.c ${dir}/*.cu)
# Assemble source files from all directories
SRC_LST = $(foreach dir, ${MDL_PTH},$(FIND_FNC))
# Source file names with directories removed
MDL_SRC := $(notdir $(SRC_LST))
# Dependency list for executable
MDL_OBJ := $(addprefix ${MY_OBJ_DIR}/,$(addsuffix .o, $(basename ${MDL_SRC})))
# Dependency (make) file for each object file
MDL_DPN := $(addprefix ${MY_DPN_DIR}/,$(addsuffix .d, $(basename ${MDL_SRC})))
# VPATH helps make find dependencies (which are not pathname qualified) in *.d file
VPATH := $(subst ${space},:,${MDL_PTH})
# Prepend -I to use for compiler argument
CPP_PTH := $(foreach dir,${MDL_PTH},-I${dir})
# Variables having to do with binary executables created by module
MDL_BIN_TRG := ncap ncatted ncbo ncecat ncflint ncks ncpdq ncra ncrename ncwa # NCO binary targets
MDL_BIN_SYM_LNK := ncdiff ncea ncrcat # Symbolic links
ifeq (${MPI},Y)
MDL_MPI_TRG := mpncbo mpncecat mpncflint mpncpdq mpncra mpncwa # MPI binary targets
MDL_MPI_TRG_SMP := ncbo ncecat ncflint ncpdq ncra ncwa # MPI binary targets
MDL_MPI_SYM_LNK := mpncdiff mpncea mpncrcat # MPI Symbolic links
MDL_MPI_STB := ${MDL_MPI_TRG} ${MDL_MPI_SYM_LNK} # All MPI files in MY_BIN_DIR
MDL_MPI_BIN := $(addprefix ${MY_BIN_DIR}/,${MDL_MPI_TRG}) # mpi_cln removes these files
MDL_MPI_OBJ := $(addsuffix .o,$(addprefix ${MY_OBJ_DIR}/,${MDL_MPI_TRG})) # mpi_cln removes these files
MDL_BIN_TRG += ${MDL_MPI_TRG} # NCO binary targets
MDL_BIN_SYM_LNK += ${MDL_MPI_SYM_LNK} # Symbolic links
endif # endif MPI
MDL_BIN_STB := ${MDL_BIN_TRG} ${MDL_BIN_SYM_LNK} # All NCO files in MY_BIN_DIR
MDL_BIN := $(addprefix ${MY_BIN_DIR}/,${MDL_BIN_STB}) # distclean removes these files
# Variables having to do with header files created by module
# List header targets alphabetically by "category":
MDL_INC_TRG := # Raw (no functions)
MDL_INC_TRG += libnco.h # libnco
MDL_INC_SYM_LNK := # Symbolic links
MDL_INC_STB = ${MDL_INC_TRG} ${MDL_INC_SYM_LNK} # All header files in ${MY_INC_DIR}
MDL_INC = $(addprefix ${MY_INC_DIR}/,${MDL_INC_STB}) # dst_cln removes these files
# Variables having to do with NCO data
MDL_DAT_STB := 85 86 87 88 89 h0001 h0002 h0003 # Symbolic links to in.nc
MDL_DAT_STB := $(addsuffix .nc,${MDL_DAT_STB}) # `make data' creates these files
MDL_DAT := $(addprefix ${MY_DAT_DIR}/,${MDL_DAT_STB}) # `make distclean' removes these files
# Variables having to do with NCO documentation
MDL_DOC_SRC := $(addprefix ../,acinclude.m4 configure.in configure.eg Makefile.am) $(addprefix ${MY_DOC_DIR}/,nco.texi ANNOUNCE MANIFEST NEWS README TODO VERSION debian.txt dods.sh opendap.sh index.shtml ncap.txt nco.png nco_news.shtml nco_src_frg.txt) $(addprefix ${MY_DBN_DIR}/,changelog compat control convert copyright files info rules doc-base) # `make tags' includes these files
MDL_DOC_TRG := nco.dvi nco.html nco.info nco.pdf nco.ps nco.txt nco.xml # `make doc' creates these files
MDL_DOC := $(addprefix ${MY_DOC_DIR}/,${MDL_DOC_TRG}) # `make distclean' removes these files
MDL_MAN := $(wildcard ${MY_MAN_DIR}/*.1)
MDL_MAN := $(notdir ${MDL_MAN})
MDL_MAN := $(addprefix ${MY_MAN_DIR}/,${MDL_MAN}) # distclean removes these files
# Variables having to do with NCO build
MDL_BLD_SRC := $(addprefix ${MY_BLD_DIR}/,libnco_tst.c libnco_c++_tst.cc Makefile nco.spec nco_dst.pl) # `make tags' includes these files
MDL_BLD_SRC += $(addprefix ${MY_BM_DIR}/,NCO_bm.pm NCO_benchmarks.pm NCO_rgr.pm nco_bm.pl nco_bm.sh mk_bm_plots.pl) # `make tags' includes these files
# Files, if any, to exclude from tags
TAGS_FILTER_FILES := .//libnco_tst.c .//libnco_c++_tst.cc .//lex.${NCO_YY_PFX}.c
# Variables having to do with ncap
MDL_NCAP_SRC := $(addprefix ${MY_SRC_DIR}/,ncap_yacc.y ncap_lex.l ncap.h) # `make tags' includes these files
MDL_NCAP_TRG := ncap_yacc.c ncap_yacc.h ncap_lex.c # `make ncap' creates these files
MDL_NCAP := $(addprefix ${MY_SRC_DIR}/,${MDL_NCAP_TRG}) # `make distclean' removes these files
# Variables having to do with C++ source and documentation
# fxm: auto-generate source code components of C++ lists
MDL_CXX_SRC := $(addprefix ${NCOXX_SRC_DIR}/,libnco++.hh Makefile.am Makefile.old ncap2.cc ncap2.hh ncap2_utl.cc NcapVar.cc NcapVar.hh NcapVarVector.cc NcapVarVector.hh NcapVector.hh ncoGrammer.g nco_antlr_pst_prc.pl fmc_cls.cc fmc_cls.hh fmc_all_cls.cc fmc_all_cls.hh fmc_gsl_cls.cc fmc_gsl_cls.hh Invoke.cc Invoke.hh map_srt_tmp.hh prs_cls.cc prs_cls.hh sdo_utl.cc sdo_utl.hh sym_cls.cc sym_cls.hh VarOp.hh vtl_cls.hh) $(addprefix ${NCO_CXX_SRC_DIR}/,INSTALL libnco_c++.hh Makefile.am Makefile.old nco_att.cc nco_att.hh nco_dmn.cc nco_dmn.hh nco_fl.cc nco_fl.hh nco_hgh.cc nco_hgh.hh nco_utl.cc nco_utl.hh nco_var.cc nco_var.hh README TODO tst.cc) # `make tags' includes these files
# Redefine default C and C++ pattern rules
${MY_OBJ_DIR}/%.o : %.c
${CC} ${CPPFLAGS} ${CFLAGS} -c $< -o ${MY_OBJ_DIR}/$(notdir $@)
${MY_OBJ_DIR}/%.o : %.cu
nvcc -deviceemu ${CPPFLAGS} ${CFLAGS} -c $< -o ${MY_OBJ_DIR}/$(notdir $@)
${MY_OBJ_DIR}/%.o : %.cc
${CXX} ${CPPFLAGS} ${CXXFLAGS} -c $< -o ${MY_OBJ_DIR}/$(notdir $@)
# Default Fortran pattern rules: CRAY and RS6K must override these rules
${MY_OBJ_DIR}/%.o : %.F
${FC} ${CPPFLAGS} -c ${FFLAGS} -o ${MY_OBJ_DIR}/$(notdir $@) $<
${MY_OBJ_DIR}/%.o : %.f
${FC} -c ${FFLAGS} -o ${MY_OBJ_DIR}/$(notdir $@) $<
# Rules for installing header files
#${MY_INC_DIR}/%.h : %.h
# cp -f -p $(notdir $@) $@
${MY_INC_DIR}/%.hh : %.hh
cp -f -p $(notdir $@) $@
# Rules for installing i18n files
%.po : %.cc
xgettext --default-domain=$* --join-existing $<
${MY_ES_DIR}/%.mo : %.po
# Linux version accepts more arguments than Solaris version
# msgfmt --output-file=$@ --statistics $<
msgfmt -o $@ $<
# Automatically generate a dependency file for each source file
# $* is the stem, e.g., f
# $@ is the filename of the target, e.g., f.d
# Linux gcc may return an extra `.F' on Fortran names, e.g., `hello.F.o: hello.F'
# (.F)? gets rid of this extra `.F'
${MY_DPN_DIR}/%.d : %.F
# Following command makes, e.g., f.d begin "f.o f.d : f.F ..."
# Since f.o is not preceded by ${MY_OBJ_DIR}, objects are not recompiled when sources are touched.
# ${MK_DPN} ${CPPFLAGS} $< | perl -p -e 's/$*\.F\.o/$*.o $@/g;' > $@
# Following command makes, e.g., f.d begin "/home/zender/obj/LINUX/f.o f.d : f.F ..."
# This works fairly well, but is a hack
# First pattern substitutes MY_OBJ_DIR_RX, which has placeholders for slashes
# Second pattern substitutes slashes for the placeholders
${MK_DPN} ${CPPFLAGS} $< | perl -p -e 's/$*(\.F)?\.o/${MY_OBJ_DIR_RX}\/$*.o ${MY_DPN_DIR_RX}\/$(notdir $@)/g;s/${slash_rx}/\${slash}/g' > $@
# Following command makes, e.g., f.d begin "${MY_OBJ_DIR}/f.o f.d : f.F ..."
# This would be the ideal command but I can't get the dollar sign to show up
# ${MK_DPN} ${CPPFLAGS} $< | perl -p -e 's/$*\.F\.o/\${dollar}MY_OBJ_DIR\/$*.o $@/g;' > $@
${MY_DPN_DIR}/%.d : %.c
# ${MK_DPN} ${CPPFLAGS} $< | perl -p -e 's/$*\.o/$*.o $@/g;' > $@
${MK_DPN} ${CPPFLAGS} $< | perl -p -e 's/$*\.o/${MY_OBJ_DIR_RX}\/$*.o ${MY_DPN_DIR_RX}\/$(notdir $@)/g;s/${slash_rx}/\${slash}/g' > $@
${MY_DPN_DIR}/%.d : %.cu
nvcc -M ${CPPFLAGS} $< | perl -p -e 's/$*\.o/${MY_OBJ_DIR_RX}\/$*.o ${MY_DPN_DIR_RX}\/$(notdir $@)/g;s/${slash_rx}/\${slash}/g' > $@
${MY_DPN_DIR}/%.d : %.cc
# NB: Use ${CXX} rather than ${CPP} on C++ files for now because, e.g., SUNMP cpp does not pre-process .cc files quite correctly
# Extra hack to allow C++ filenames to contain '+' character
# $(subst ${plus},${plus_rx},${*}) is filename stub with an Rx in place of '+'
${MK_DPN_CXX} ${CXXCPPFLAGS} $< | perl -p -e 's/\${plus}/${plus_rx}/g;s/$(subst ${plus},${plus_rx},${*})\.o/${MY_OBJ_DIR_RX}\/$*.o ${MY_DPN_DIR_RX}\/$(notdir $@)/g;s/${slash_rx}/\${slash}/g;s/${plus_rx}/\${plus}/g' > $@
# First LDFLAGS is for typical C programs with netCDF, math, and networking
# Second LDFLAGS, when present, enables C/Fortran linking
# Manually define autotools tokens normally defined with HAVE_CONFIG_H in config.h
# Initialize OS-specific tokens to empty
CPP_TKN_OS := -DHAVE_REGEX_H -DNCO_HAVE_REGEX_FUNCTIONALITY -DHAVE_GETPAGESIZE -DHAVE_GETRUSAGE
ifneq (${PVM_ARCH},CRAY)
CPP_TKN_OS += -DHAVE_MKSTEMP
endif # CRAY
ifneq (${null},$(findstring ${PVM_ARCH},FREEBSDLINUXALPHALINUXAMD64LINUXARMMACOSXWIN32))
CPP_TKN_OS += -DHAVE_GETOPT_H -DHAVE_GETOPT_LONG
endif # !LINUX
ifneq (${null},$(findstring ${PVM_ARCH},AIXSGIMP64))
CPP_TKN_OS += -DNEED_GETOPT_LONG
endif # !(AIX || SGI)
ifeq (${CNK},Y)
CPP_TKN_OS += -DHAVE_NEW_CHUNKING_API
endif # !CNK
ifeq (${DAP_NETCDF},Y)
CPP_TKN_OS += -DENABLE_DAP -DENABLE_DAP_NETCDF
endif # !DAP_NETCDF
ifeq (${DAP_OPENDAP},Y)
CPP_TKN_OS += -DENABLE_DAP -DENABLE_DAP_OPENDAP
endif # !DAP_OPENDAP
ifeq (${GSL},Y)
CPP_TKN_OS += -DENABLE_GSL -DHAVE_GSL_H
endif # !GSL
ifeq (${MPI},Y)
ifneq (${MPI_FAKE},Y)
CPP_TKN_OS += -DENABLE_MPI
endif # MPI_FAKE
endif # !MPI
ifeq (${UDUNITS},Y)
CPP_TKN_OS += -DENABLE_UDUNITS -DHAVE_UDUNITS_H
ifeq (${UDUNITS2},Y)
CPP_TKN_OS += -DHAVE_UDUNITS2_H
endif # !UDUNITS2
endif # !UDUNITS
# Assume strcasecmp() and strdup() routines are present (Comeau, Pathscale are exceptions)
CPP_TKN_OS +=
# fxm: Define HAVE_LIBINTL, HAVE_LOCALE_H, HAVE_GETTEXT, HAVE_OMP_H
# Works on AIX and AIX46K
ifneq (${null},$(findstring AIX,${PVM_ARCH}))
# 20030804: Always use re-entrant (_r) compilers---Jim Edwards NCAR/IBM
CC := xlc_r -qlanglvl=extc99
#CC := gcc -std=c99 -pedantic -D_BSD_SOURCE -D_POSIX_SOURCE
CXX := xlC_r
# CXX := g++
CPP := xlc -c -qlanglvl=extc99 -qsuppress=1501-245 -I/usr/lpp/ppe.poe/include
FC := xlf95_r
ifneq (${null},$(findstring xl,${CC}))
# /usr/include headers must occur before Visual Age headers to prevent xlC pragma warnings
# Visual Age compiler headers must occur before g++ headers
CPP_TKN_OS += -I/usr/include -I/usr/vacpp/include
endif # xlC compilers
# Add /usr/local/include for libintl.h explicitly until netCDF is moved there
CPPFLAGS := ${CPP_TKN} ${CPP_TKN_OS} ${CPP_PTH} -I${NETCDF_INC} -DNEED_LOGF
LD := ld
# 20020422: -lC links to AIX C++ library which contains float intrinsics cosf()...
# -bh:5 suppresses annoying messages from xlC linker WARNING: Duplicate symbol: ...
LDFLAGS += -bh:5 ${TMP_LDFLAGS} ${TMP_LIBS} -lm -lC
LEX := flex
LINT := lint
YACC := bison
# AIX VA Compiler Collection
ifneq (${null},$(findstring xl,${CC}))
# Visual Age compiler defaults specified in /etc/vac.cfg
# Additional switch to fix compiler warnings on csz.c
# -qarch=auto : Automatically detect architecture of compiling machine and assume execution on same machine
# -qlonglong allow long long integers (and strtoll(), strtoull()) (default on in C not C++). Redundant with -qlanglvl=extc99
# -qmaxmem=num Limit memory used by space intensive optimizations to <num> kilobytes
# -qspill=size Size in B of register allocation spill area, mie needs > 1040 B
# -qsrcmsg prints transgressing source line with finger
# -qsuppress=1501-245 : Suppress RLIM_INFINITY memory message due to ulimits
# -qtune=auto : Optimize executable for architecture detected during compilation
CFLAGS := -qmaxmem=8192 -qspill=2048 -qsrcmsg -qsuppress=1501-245
FFLAGS := -NS2000 -qfixed=132 -qsrcmsg
# -bh:5 suppresses annoying messages from xlC linker WARNING: Duplicate symbol: ...
LDFLAGS += -bh:5 -qsuppress=1501-245
#LDFLAGS += -lxlf90 # Required for linking Fortran objects
ifeq (${OMP},Y)
FC := xlf95_r
# -qsmp=noauto : Turn on SMP/OMP code generation but do no automatic parallelization
# -qsmp=omp : Use industry standard OMP without IBM extensions
OMP_FLG := -qsmp=omp
else
CPP_DFN += -U_OPENMP
FC := xlf95
endif # endif OMP
ifeq (${OPTS},O)
# -O : -O3 is safe, -O5 is dangerous
# -qstrict: Ensure that -O3 optimizations do not alter program semantics
# -Q : Inline all appropriate subprograms
CFLAGS += -O3 -g -qstrict -Q
FFLAGS += -O3 -g -qstrict -Q
endif
ifeq (${OPTS},D)
CFLAGS += -g
FFLAGS += -g
endif
ifeq (${OPTS},X)
# -qflttrap generates instructions for floating point exceptions
# -qidirfirst uses headers found in -I directories first
# -qmakedep creates .d file
# -qwarn64 check for possible long-to-integer or pointer-to-integer truncation
# -qhalt=e stop compiler if error severity equals or exceeds i, w, e, s, u
CFLAGS += -g -qflttrap -qidirfirst -qwarn64 -qcheck=all -qhalt=s
FFLAGS += -g
endif
ifeq (${ABI},64)
AR := ar -X 64
CFLAGS += -q64
FFLAGS += -q64
LDFLAGS += -q64
else
CPPFLAGS += -D_LARGE_FILES
endif # endif ABI
# Additional flags for AIX:
# -M Generate information to be included in a "make" description file; output goes to .u file
# -c Do not send object files to the linkage editor
# -P Preprocess but do not compile; output goes to .i file
# Using -P causes additional warning messages about lm
# Not using -P causes *.o files to be created twice
${MY_DPN_DIR}/%.d : %.c
${MK_DPN} ${CPPFLAGS} $< ;perl -p -e 's/$*\.o/${MY_OBJ_DIR_RX}\/$*.o ${MY_DPN_DIR_RX}\/$(notdir $@)/g;s/${slash_rx}/\${slash}/g' $*.u > $@ ; \
rm -f $*.i $*.o $*.u;
${MY_DPN_DIR}/%.d : %.cc
${MK_DPN_CXX} ${CPPFLAGS} $< ;perl -p -e 's/$*\.o/${MY_OBJ_DIR_RX}\/$*.o ${MY_DPN_DIR_RX}\/$(notdir $@)/g;s/${slash_rx}/\${slash}/g' $*.u > $@ ; \
rm -f $*.i $*.o $*.u;
endif # endif AIX VA Compiler Collection
# GNU Compiler Collection
ifneq (${null},$(findstring gcc,${CC}))
CFLAGS := -Wall -Wunused
ifeq (${OPTS},O)
CFLAGS += -O -g ${GCC_RCH_ARG}
endif
ifeq (${OPTS},D)
CFLAGS += -g
endif
ifeq (${OPTS},R)
CFLAGS +=
endif
ifeq (${OPTS},X)
CFLAGS += -g -O
LDFLAGS += /usr/local/lib/ccmalloc-g++.o -L/usr/local/lib -lccmalloc -ldl
endif
ifeq (${ABI},64)
CC += -maix64
CXX += -maix64
endif # endif ABI
CXXFLAGS := ${CFLAGS}
endif # endif GNU Compiler Collection
# -q64: Select 64-bit compiler mode (required for accessing large files)
# -qwarn64: Warn on possible long-to-integer or pointer-to-integer truncation
CXXFLAGS := ${CFLAGS}
ifeq (${OMP},Y)
CFLAGS += ${OMP_FLG}
CXXFLAGS += ${OMP_FLG}
FFLAGS += ${OMP_FLG}
LDFLAGS := ${OMP_FLG} ${LDFLAGS}
endif # endif OMP
endif
# endif AIX
ifeq (${PVM_ARCH},ALPHA)
ifeq (${OMP},Y)
OMP_FLG := -omp
endif # endif OMP
CXX := cxx
CC := cc
CFLAGS := ${OMP_FLG}
CPP := cpp
CPPFLAGS := ${CPP_TKN} ${CPP_TKN_OS} ${CPP_PTH} -I${NETCDF_INC}
FC := f90
FFLAGS := -r8 -i4 -c ${OMP_FLG} -automatic
FIXEDFLAGS := -extend_source ${OMP_FLG} -automatic
FREEFLAGS := -DHIDE_SHR_MSG -free
LD := ld
LDFLAGS += ${OMP_FLG} ${TMP_LDFLAGS} ${TMP_LIBS} -lm
LEX := flex
LINT := lint
YACC := bison
ifeq (${OPTS},O)
CFLAGS += -O2 -g -ansi_alias
FFLAGS += -O3 -g -inline speed
endif
ifeq (${OPTS},D)
CFLAGS += -g -check_bounds -check -check_omp
FFLAGS += -g3 -C
endif
ifeq (${OPTS},X)
CFLAGS := -g -N 132
FFLAGS := -g -check bounds -check omp_bindings -check overflow -check underflow
endif
CXXFLAGS := ${CFLAGS}
${MY_OBJ_DIR}/%.o : %.F90
${FC} -c ${FREEFLAGS} ${FFLAGS} ${CPPFLAGS} -o ${MY_OBJ_DIR}/$(notdir $@) $<
${MY_OBJ_DIR}/%.o : %.F
${FC} -c ${FIXEDFLAGS} ${FFLAGS} ${CPPFLAGS} -o ${MY_OBJ_DIR}/$(notdir $@) $<
endif
# endif ALPHA
ifeq (${PVM_ARCH},CRAY)
CXX := CC
CC := cc
CPP := cpp
CPPFLAGS := ${CPP_TKN} ${CPP_TKN_OS} ${CPP_PTH} -I${NETCDF_INC}
FC := f90
# -F enables macro substitution
# -dp enables DOUBLEPRECISION/double
FFLAGS := -N 132 -F -dp
LD := ld
LDFLAGS += ${TMP_LDFLAGS} ${TMP_LIBS} -lm
LEX := flex
LINT := lint
YACC := bison
ifeq (${OPTS},O)
CFLAGS += -h rounddiv -h nofastmd -h nofastmodulus
FFLAGS += -O2 -g
endif
ifeq (${OPTS},D)
CFLAGS += -g -h indef -h rounddiv -h nofastmd -h nofastmodulus
FFLAGS += -g -ei
endif
ifeq (${OPTS},X)
CFLAGS += -g -h rounddiv -h indef -h bounds -h nofastmd -h nofastmodulus
FFLAGS += -g -ei -Rabc
endif
# 19971021 Added -P to suppress #line # directives on Fortran files
${MY_OBJ_DIR}/%.o : %.F
${CPP} -P ${CPPFLAGS} $< > $(patsubst %.F,%.f,$(notdir $<))
${FC} -c ${FFLAGS} $(patsubst %.F,%.f,$(notdir $<))
-mv -f $(notdir $@) ${MY_OBJ_DIR}
rm -f $(patsubst %.F,%.f,$(notdir $<))
${MY_OBJ_DIR}/%.o : %.f
${FC} -c ${FFLAGS} $<
mv -f $(notdir $@) ${MY_OBJ_DIR}
endif
# endif CRAY
ifeq (${PVM_ARCH},HPPA)
CXX := g++
CC := gcc -std=c99 -pedantic -D_BSD_SOURCE -D_POSIX_SOURCE
CPPFLAGS := ${CPP_TKN} ${CPP_TKN_OS} ${CPP_PTH} -I${NETCDF_INC}
FC := f77
LD := ld
LDFLAGS += ${TMP_LDFLAGS} ${TMP_LIBS} -lnsl -lm
LEX := flex
LINT := lint
YACC := bison
ifeq (${OPTS},O)
CFLAGS += -O2 -g
FFLAGS := -fast -eendif
endif
ifeq (${OPTS},D)
CFLAGS += -g
FFLAGS := -g -e
endif
ifeq (${OPTS},X)
CFLAGS += -g
FFLAGS := -g -e
endif
endif
# endif HPPA
# Works on LINUX, LINUXALPHA, LINUXAMD64, LINUXARM, and FREEBSD
ifneq (${null},$(findstring ${PVM_ARCH},LINUXALPHALINUXAMD64LINUXARMFREEBSD))
CXX := ${LINUX_CXX}
CC := ${LINUX_CC}
CPP := ${CC}
# NB: nameser.h needs -Di386, but gcc sends -Di586 (on pentiums)
CPP_TKN_OS += -Di386
CPPFLAGS := ${CPP_TKN} ${CPP_TKN_OS} ${CPP_PTH} -I${NETCDF_INC}
FC := ${LINUX_FC}
LD := ld
LDFLAGS += ${TMP_LDFLAGS} ${TMP_LIBS} -lm
LEX := flex
LINT := lint
YACC := bison
# Comeau C Compiler
ifeq (${CXX},como)
CFLAGS :=
CPPFLAGS += -DNEED_STRCASECMP
CPPFLAGS += -DNEED_STRDUP
LDFLAGS := ${COMOROOT}/libcomo/libcomo.a ${LDFLAGS}
ifeq (${OPTS},O)
CFLAGS += -O -g
endif
ifeq (${OPTS},D)
CFLAGS += -g
endif
ifeq (${OPTS},R)
CFLAGS +=
endif
ifeq (${OPTS},X)
CFLAGS += -g
endif
CXXFLAGS := ${CFLAGS}
endif # endif Comeau C Compiler
# GNU Compiler Collection
ifeq (gcc,$(firstword ${CC}))
CPPFLAGS += -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE
CFLAGS := -Wall
# Compilation flags for numerical routines recommended by GSL 1.3 manual, p. 397
CFLAGS += -Wall -W -Wmissing-prototypes -Wshadow -Wpointer-arith -Wcast-qual -Wcast-align -Wwrite-strings -fno-common -g
# Compilation flags recommended by GSL that I like and use:
# -D_BSD_SOURCE: Support 4.3 BSD Unix extensions to ANSI C (prevents nameser.h warnings)
# -D_POSIX_SOURCE: Support POSIX.1 standard additions to ANSI C (prevents fileno warnings)
# -pedantic: Disallow non-ISO constructs (including type long long) (sometimes useful)
# -W: Extra warnings, including missing return values, comparison of signed with unsigned
# -Wall: Warn about common programming problems
# -Wcast-align: Warn if casting pointer to type of different size
# -Wcast-qual: Warn if const qualifier removed from pointer
# -Werror: Consider warnings as errors
# -Wmissing-prototypes: Warn if missing prototypes
# -Wpointer-arith: Warn if pointer arithmetic on types without size, e.g., void
# -Wshadow: Warn if local variable has same name as other local variable
# -Wswitch: Warn if switch statement has enumerated index and case label outside enumeration range
# -Wunused: Warn on unused functions, labels, parameters, values, and variables
# -Wwrite-strings: Apply const-qualifier to string constants, die if overwritten
# -fno-common: Prevent global variables from being simultaneously defined in different files
# -g: Put debugging symbols in executable
# -pg: Enable profiling, generate gmon.out output files (also needed by linker)
# -O4: Turn on optimization so uninitialized variables are flagged. Downside: optimizes-out many symblols useful for debugging
# Compilation flags recommended by GSL that I do not like and do not use:
# -ansi: Support only strict ANSI C. Equivalent to -std=c89, conflicts with -std=c99
# --no-alias? -fstrict-aliasing
# -Waggregate-return: Warn if functions return aggregates like structures or unions
# -Wconversion: Warn if converting signed to unsigned. Intended for obsolete, non-prototyped code. Triggers fabsf(), sqrtf(), warnings.
# -Wnested-externs: Warn if extern is encountered within function. C only?
# -Wstrict-prototypes: Warn if inconsistent prototypes. C only?
# -Wtraditional: Warn if constructs differ between traditional and ANSI C. C only?
# -Dinline=: inline is not an ANSI keyword, must undefine inline to work with -ansi
# -fshort-enums: Make enums as short as possible, ususally non-int. Do not ever invoke this! This breaks ABI and causes subtle problems
ifeq (${OMP},Y)
OMP_FLG_C := -fopenmp
OMP_FLG_F := -fopenmp
LDFLAGS += -lgomp -lpthread
endif # endif OMP
ifeq (${OPTS},O)
CFLAGS += -O4 -g ${GCC_RCH_ARG}
endif
ifeq (${OPTS},D)
CFLAGS += -g -Wno-switch
endif
ifeq (${OPTS},R)
CFLAGS +=
endif
ifeq (${OPTS},X)
# 20090715: https://wiki.ubuntu.com/CompilerFlags
# -D_FORTIFY_SOURCE=2 : Compile-time libc checks, run-time buffer/memory checks
# -fstack-protector : Enable run-time stack overflow verification
# -Wformat-security : Warn about misuse of format strings
# -Wl,-z,relro : Read-only relocation table area in final ELF
CPPFLAGS += -D_FORTIFY_SOURCE=2
CFLAGS += -g -fstack-protector -Wformat-security -Wl,-z,relro
# 20090715: -Werror triggers known nc_put_var?_string() and nco_def_var_chunking() errors
# CFLAGS += -g -O -pg -fno-inline -Werror
CFLAGS += -g -O -pg -fno-inline
LDFLAGS += -pg
# LDFLAGS += /usr/local/lib/ccmalloc-gcc.o -L/usr/local/lib -lccmalloc -ldl
endif
ifneq (${null},$(findstring AMD64,${PVM_ARCH}))
ifeq (${ABI},64)
CFLAGS += -m64
FFLAGS += -m64
LDFLAGS += -m64
endif # endif ABI
endif # endif LINUXAMD64
CXXFLAGS := ${CFLAGS}
endif # endif GNU Compiler Collection
# Intel (Kai) C Compiler
ifeq (icc,$(firstword ${CC}))
# -fast: enable -xP -O3 -ipo -static
# -ipo[n]: enable multi-file IP optimizations (between files)
# -no-gcc: do not define __GNUC__, __GNUC_MINOR__, and __GNUC_PATCHLEVEL__ macros
# -static: prevents linking with shared libraries
# -std=c99: Enable C99 support for C programs
# -xB: specialize code to run exclusively on Intel Pentium M and compatible Intel processors
# -xK: specialize code to run exclusively on Intel Pentium III and compatible Intel processors
# -xN: specialize code to run exclusively on Intel Pentium 4 and compatible Intel processors
# -xP: specialize code to run exclusively on Intel Pentium 4 processors with SSE3 extensions
# -Wall: enable all warnings
# -Werror:force warnings to be reported as errors
# -w0: display errors (same as -w)
# -w1: display warnings and errors (DEFAULT)
# -w2: display remarks, warnings, and errors
# -wd<L1>[,<L2>,...] disable diagnostics L1 through LN
# remark #981: operands are evaluated in unspecified order
# remark #810: conversion from "double" to "float" may lose significant bits
# remark #1572: floating-point equality and inequality comparisons are unreliable
CFLAGS := -w1
CPPFLAGS += -no-gcc
LDFLAGS += -lsvml
OMP_FLG_C := -openmp -openmp_report0
ifeq (${OPTS},O)
CFLAGS += -O3 -g ${ICC_RCH_ARG}
endif
ifeq (${OPTS},D)
CFLAGS += -g
endif
ifeq (${OPTS},R)
CFLAGS +=
endif
ifeq (${OPTS},X)
CFLAGS += -g -Wall -wd810,981,1572 -inline_debug_info
endif
CXXFLAGS := ${CFLAGS}
endif # endif Intel (Kai) C Compiler
# Intel (Kai) Fortran Compiler
ifeq (${FC},ifc)
# -e95 issues warnings for non-standard fortran
# -fpp2 necessary, but not sufficient, for OpenMP
FFLAGS := -extend_source -implicitnone -vms -e95 -fpp2
# -lVaxlib needed for iargc_, getarg_
LDFLAGS += -lVaxlib
OMP_FLG_C := -openmp
ifeq (${PRC},D)
FFLAGS += -i4 -r8 -doubletemps
else
FFLAGS += -i4
endif
ifeq (${OPTS},O)
FFLAGS += -O2 -g
endif
ifeq (${OPTS},D)
FFLAGS += -g
endif
ifeq (${OPTS},R)
FFLAGS +=
endif
ifeq (${OPTS},X)
FFLAGS += -g -C -e95
endif
endif # endif Intel (Kai) Fortran Compiler
# cd ~;nvcc -o libcuda_add.a -deviceemu -lib simpleTemplates.cu
# cd ~;g++ -I/usr/local/cuda/include -c -o test.o test.c
# cd ~;g++ -o ~/test test.o libcuda_add.a
# NVidia C Compiler
ifeq (nvcc,$(firstword ${CC}))
CPPFLAGS +=
# -deviceemu: Emulate CUDA CPU
# -lib: build static libraries
CFLAGS := -deviceemu -lib
ifeq (${OMP},Y)
OMP_FLG_C :=
OMP_FLG_F :=
LDFLAGS +=
endif # endif OMP
ifeq (${OPTS},O)
CFLAGS += -O -g
endif
ifeq (${OPTS},D)
CFLAGS += -g
endif
ifeq (${OPTS},R)
CFLAGS +=
endif
ifeq (${OPTS},X)
CFLAGS += -g
LDFLAGS +=
endif
ifneq (${null},$(findstring AMD64,${PVM_ARCH}))
ifeq (${ABI},64)
CFLAGS +=
FFLAGS +=
LDFLAGS +=
endif # endif ABI
endif # endif LINUXAMD64
CXXFLAGS := ${CFLAGS}
endif # endif NVidia C Compiler
# Pathscale (QLogic) C Compiler
ifeq (pathcc,$(firstword ${CC}))
# pathcc -show-defaults
# shows that pathcc automatically sets many hardware-specific options
# man -k pathscale for full listing
# -O2 = -O: Default optimization
# -Ofast = -O3:
CFLAGS :=
CPPFLAGS += -DNEED_STRCASECMP
LDFLAGS +=
OMP_FLG_C := -apo -mp
ifeq (${OPTS},O)
CFLAGS += -O3 -g ${PSC_RCH_ARG}
endif
ifeq (${OPTS},D)
CFLAGS += -g
endif
ifeq (${OPTS},R)
CFLAGS += -O2
endif
ifeq (${OPTS},X)
CFLAGS += -g
endif
CXXFLAGS := ${CFLAGS}
endif # end Pathscale (QLogic) C++ Compiler
# Portland Group C++ Compiler
ifeq (pgcc,$(firstword ${CC}))
# Enable Large File Support (LFS) by default
CFLAGS := -Mlfs
# Pass kludgy PGI identifier to flag for broken C99 designated initializers etc.
CPPFLAGS := $(filter-out -DHAVE_C99,${CPPFLAGS})
CPPFLAGS := -DPGI_CC ${CPPFLAGS}
LDFLAGS += -Mlfs
OMP_FLG_C := -mp
ifeq (${OPTS},O)
CFLAGS += -fast ${PGI_RCH_ARG}
endif
ifeq (${OPTS},D)
CFLAGS += -g
endif
ifeq (${OPTS},R)
CFLAGS +=
endif
ifeq (${OPTS},X)
CFLAGS += -g -Mbounds
endif
CXXFLAGS := ${CFLAGS}
endif # endif Portland Group C++ Compiler
# Portland Group Fortran Compiler
ifeq (${FC},pgf90)
FFLAGS := -Mextend -Mnosecond_underscore -byteswapio -Mrecursive -Mdalign -Ktrap=fp -Mlfs
OMP_FLG_F := -mp
ifeq (${PRC},D)
FFLAGS += -Mr8 -Mi4
endif
ifeq (${OPTS},O)
FFLAGS += -fast
endif
ifeq (${OPTS},D)
FFLAGS += -g
endif
ifeq (${OPTS},R)
FFLAGS +=
endif
ifeq (${OPTS},X)
FFLAGS += -g -Mbounds
endif
endif # endif Portland Group Fortran Compiler
# G77 Fortran compiler
ifeq (${FC},g77)
FFLAGS := -ffixed-line-length-132 -fno-second-underscore
ifeq (${OPTS},O)
FFLAGS += -O -g
endif
ifeq (${OPTS},D)
FFLAGS += -g -fdebug-kludge
endif
ifeq (${OPTS},R)
FFLAGS += -fdebug-kludge
endif
ifeq (${OPTS},X)
FFLAGS := -g -O -fdebug-kludge -fbounds-check
endif
endif # endif G77 Fortran compiler
ifeq (${OMP},Y)
CFLAGS += ${OMP_FLG_C}
CXXFLAGS += ${OMP_FLG_C}
FFLAGS += ${OMP_FLG_C}
# LD behavior assumes C source code
LDFLAGS := ${OMP_FLG_C} ${LDFLAGS}
endif # endif OMP
endif
# endif LINUX, LINUXALPHA, LINUXAMD64, LINUXARM, FREEBSD
ifeq (${PVM_ARCH},MACOSX)
CXX := c++
# NB: -D_POSIX_SOURCE breaks MACOSX build in nco_fl_utl.c, nco_mmr.c
CC := cc -std=c99 -pedantic -D_BSD_SOURCE
# -fno-common: Allows shared libraries to build
CFLAGS := -Wall -fno-common
CPP := ${CC}
CPPFLAGS := ${CPP_TKN} ${CPP_TKN_OS} ${CPP_PTH} -I${NETCDF_INC}
FC := f90
LD := ld
LDFLAGS += ${TMP_LDFLAGS} ${TMP_LIBS} -lresolv -lm
LEX := flex
LINT := lint
YACC := bison
ifeq (${OPTS},O)
CFLAGS += -O
endif
ifeq (${OPTS},D)
CFLAGS += -g
endif
ifeq (${OPTS},R)
CFLAGS +=
endif
ifeq (${OPTS},X)
CFLAGS += -g -O
LDFLAGS += /usr/local/lib/ccmalloc-gcc.o -L/usr/local/lib -lccmalloc -ldl
endif
CXXFLAGS := ${CFLAGS}
ifeq (${OMP},Y)
CFLAGS += ${OMP_FLG}
FFLAGS += ${OMP_FLG}
LDFLAGS := ${OMP_FLG} ${LDFLAGS}
endif # endif OMP
endif
# endif MACOSX
ifeq (${PVM_ARCH},NECSX)
ifeq (${OMP},Y)
OMP_FLG := -Popenmp
endif # endif OMP
CXX := c++
#CC := c++ -Xa
CC := cc
CPP := c++ -E
#CPP := /usr/lib/cpp
CPPFLAGS := ${CPP_TKN} ${CPP_TKN_OS} ${CPP_PTH} -I${NETCDF_INC}
FC := f90
LD := ld
LDFLAGS += ${TMP_LDFLAGS} ${TMP_LIBS} -lm
LEX := flex
LINT := lint
YACC := bison
ifeq (${OPTS},O)
CFLAGS += -h2 -hmath vector -hxint
# CFLAGS += -Cvopt -math vector -xint
FFLAGS = -Cvopt -f3
endif
ifeq (${OPTS},D)
CFLAGS += -g
FFLAGS = -g -f3
endif
ifeq (${OPTS},X)
CFLAGS += -g -h0 -hstack=nan
# CFLAGS += -Cdebug -init stack=nan
FFLAGS = -Cdebug -eR -f3 -Wf"-init stack=nan heap=nan"
endif
MK_DPN = /usr/local/bin/mkdep.perl /usr/lib/cpp # NECSX try this
${MY_DPN_DIR}/%.d : %.c
${MK_DPN} ${CPPFLAGS} $< | perl -p -e 's/$*\.o/${MY_OBJ_DIR_RX}\/$*.o ${MY_DPN_DIR_RX}\/$(notdir $@)/g;s/${slash_rx}/\${slash}/g' > $@
endif
# endif NECSX
ifeq (${PVM_ARCH},RS6K)
CXX := g++
CC := gcc -std=c99 -pedantic -D_BSD_SOURCE -D_POSIX_SOURCE
CPP := /lib/cpp -P
CPPFLAGS := ${CPP_TKN} ${CPP_TKN_OS} ${CPP_PTH} -I${NETCDF_INC}
FC := xlf
LD := ld
LDFLAGS += ${TMP_LDFLAGS} ${TMP_LIBS} -lm
LEX := flex
LINT := lint
YACC := bison
ifeq (${OPTS},O)
CFLAGS += -O2
CPP := ${CPP} ${CPPFLAGS}
PREPROCESS.F := ${CPP} ${CPPFLAGS}
FFLAGS := -O -g -NS2000 -qfixed=132
endif
ifeq (${OPTS},D)
CFLAGS += -g
CPP := ${CPP} ${CPPFLAGS}
PREPROCESS.F := ${CPP} ${CPPFLAGS}
FFLAGS := -g -NS2000 -qfixed=132
endif
${MY_OBJ_DIR}/%.o : %.F
${CPP} ${CPPFLAGS} $< ${MY_OBJ_DIR}/$(basename $<).f
${FC} -c ${FFLAGS} -o ${MY_OBJ_DIR}/$(notdir $@) ${MY_OBJ_DIR}/$(basename $<).f
${MY_OBJ_DIR}/%.o : %.f
${FC} -c ${FFLAGS} -o ${MY_OBJ_DIR}/$(notdir $@) $<
endif
# endif RS6K
# SGI6, SGI64, SGIMP64
ifneq (${null},$(findstring SGI,${PVM_ARCH}))
ifeq (${OMP},Y)
OMP_FLG := -mp -mpio
endif # endif OMP
CXX := CC -LANG:std
CC := cc -c99
# 20000302: -w suppresses warnings which will swamp linker
#CXX := g++ -w
#CC := gcc -std=c99 -pedantic -D_BSD_SOURCE -D_POSIX_SOURCE
CPPFLAGS := ${CPP_TKN} ${CPP_TKN_OS} ${CPP_PTH} -I${NETCDF_INC}
ifdef $(MIPSPRO_SGI)
# SGIs like dataproc keep omp.h in special location determined by module MIPSpro
CPPFLAGS := -I$(MIPSPRO_SGI)/usr/include ${CPPFLAGS}
endif
FC := f90 -cpp
LD := ld
LEX := flex
LINT := lint
YACC := bison
ifeq (${PVM_ARCH},SGI6)
GCC_ABI_FLG := -mabi=32
GCC_LDFLAGS_SZ_SPC := ${GCC_ABI_FLG} -mips3
SGI_ABI_FLG := -n32 -mips3 ${OMP_FLG}
else # SGI64, SGIMP64
ifeq (${ABI},64)
GCC_ABI_FLG := -mabi=64
GCC_LDFLAGS_SZ_SPC := ${GCC_ABI_FLG} -mips4 -L/usr/local/lib/mabi=64
SGI_ABI_FLG := -64 -mips4 ${OMP_FLG}
else # ABI=32
GCC_ABI_FLG := -mabi=32
GCC_LDFLAGS_SZ_SPC := ${GCC_ABI_FLG} -mips4
SGI_ABI_FLG := -n32 -mips4 ${OMP_FLG}
endif # endif ABI
endif # endif SGI64, SGIMP64
ifeq (gcc,$(firstword ${CC}))
LDFLAGS += ${GCC_LDFLAGS_SZ_SPC} ${TMP_LDFLAGS} ${TMP_LIBS} -lm
CFLAGS := ${GCC_ABI_FLG} -Wall
ifeq (${OPTS},O)
CFLAGS += -O2
endif
ifeq (${OPTS},R)
CFLAGS +=
endif
ifeq (${OPTS},D)
CFLAGS += -g
endif
ifeq (${OPTS},X)
CFLAGS += -g -O
endif
CXXFLAGS := ${CFLAGS}
endif
# endif CC=gcc
ifeq (cc,$(firstword ${CC}))
LDFLAGS += ${SGI_ABI_FLG} ${TMP_LDFLAGS} ${TMP_LIBS} -lm
CFLAGS := ${SGI_ABI_FLG}
ifeq (${OPTS},O)
CFLAGS += -O2
endif
ifeq (${OPTS},R)
CFLAGS +=
endif
ifeq (${OPTS},D)
CFLAGS += -g
endif
ifeq (${OPTS},X)
CFLAGS += -g -trapuv
endif
endif
# endif CC=cc
# Fortran flags
FFLAGS := ${SGI_ABI_FLG} -extend_source
ifeq (${OPTS},O)
FFLAGS := -O2 -g
endif
ifeq (${OPTS},R)
FFLAGS :=
endif
ifeq (${OPTS},D)
FFLAGS := -g
endif
ifeq (${OPTS},X)
FFLAGS := -g -check_bounds -trapuv
endif
# end fortran flags
endif
# endif SGI6, SGI64, SGIMP64
ifeq (${UNAMES},SunOS)
CXX := CC
CC:= c99 -D_BSD_SOURCE
CFLAGS :=
CPP := cc -E
#CXX := g++
#CC := gcc -std=c99 -pedantic -D_BSD_SOURCE -D_POSIX_SOURCE
#CFLAGS := -Wall
#CPP := cpp
CPPFLAGS := ${CPP_TKN} ${CPP_TKN_OS} ${CPP_PTH} -I${NETCDF_INC}
FC := f90 -DHIDE_SHR_MSG
#FFLAGS := -xs -stackvar -e -Qoption f90comp -r8const
FFLAGS := -xs -stackvar -e
LD := ld
LDFLAGS += ${TMP_LDFLAGS} ${TMP_LIBS} -lsunmath -lresolv -lsocket -lnsl -lm
LEX := flex
LINT := lint
YACC := bison
ifeq (${OPTS},O)
CFLAGS += -O2 -g
FFLAGS += -fast
endif
ifeq (${OPTS},D)
CFLAGS += -g
FFLAGS += -g
endif
ifeq (${OPTS},X)
CFLAGS += -g
FFLAGS += -g
# NB: 19980601 -C (range-checking) is not supported by Sun f90
ifeq (${FC},f77)
FFLAGS += -C
endif
endif
CXXFLAGS := ${CFLAGS}
endif
# endif SunOS=SUN4SOL2,SUNMP
ifeq (${PVM_ARCH},WIN32)
CXX := g++
CC := gcc -std=c99 -pedantic -D_BSD_SOURCE -D_POSIX_SOURCE
# NB: nameser.h needs -Di386, but gcc sends -Di586 (on pentiums)
CPP_TKN_OS += -Di386 -DNEED_STRCASECMP -DNEED_STRDUP -I/usr/include
CPPFLAGS := ${CPP_TKN} ${CPP_TKN_OS} ${CPP_PTH} -I${NETCDF_INC}
FC := g77
LD := ld
LDFLAGS += ${TMP_LDFLAGS} ${TMP_LIBS} -lm
LEX := flex
LINT := lint
YACC := bison
ifeq (${OPTS},O)
CFLAGS += -O -g
endif
ifeq (${OPTS},D)
CFLAGS += -g
endif
${MY_OBJ_DIR}/%.o : %.F
${FC} -c ${FFLAGS} ${CPPFLAGS} -o ${MY_OBJ_DIR}/$(notdir $@) $<
${MY_OBJ_DIR}/%.o : %.f
${FC} -c ${FFLAGS} -o ${MY_OBJ_DIR}/$(notdir $@) $<
endif
# endif WIN32
# Link to OPeNDAP libraries first, see OPeNDAP User's Guide
# Currently this is invoked by using 'make DAP_OPENDAP=Y'
ifeq (${DAP_OPENDAP},Y)
# OPeNDAP >= 3.7.0 defines NC_64BIT_OFFSET correctly
# CPPFLAGS += -DNC_64BIT_OFFSET=0
ifneq (${CC},g++)
ifeq (${null},$(findstring xl,${CC}))
# g++ automatically links to -lstdc++, other compilers may need help
LDFLAGS := ${LDFLAGS} -lstdc++
endif # !xl*
endif # !g++
endif # !DAP_OPENDAP
# endif DAP_OPENDAP
# Resolve nvcc CUDA run-time library functions
ifeq (${CUDA},Y)
CUDA_FLG_C :=
CUDA_FLG_F :=
LDFLAGS += -L/usr/local/cuda/lib -lcudart
endif # endif CUDA
# Internationalize NCO with i18n features
ifeq (${I18N},Y)
CPPFLAGS += -DI18N
ifneq (${null},$(findstring SGI,${PVM_ARCH}))
LDFLAGS += -lintl
endif
endif
# endif I18N
ifeq (${NETCDF4},Y)
CPPFLAGS += -DENABLE_NETCDF4 -DHAVE_NETCDF4_H
endif
# endif NETCDF4
ifeq (${PNETCDF},Y)
CPPFLAGS += -DENABLE_PNETCDF
endif
# endif PNETCDF
ifeq (${ZNETCDF},Y)
CPPFLAGS += -DENABLE_ZNETCDF
endif
# endif ZNETCDF
# Default to MPICC, MPICXX to CC, CXX and cross your fingers
MPICC := ${CC}
MPICXX := ${CXX}
# Manipulate CC, CPP, CXX as appropriate for MPI-enabled operators
ifeq (${MPI},Y)
ifneq (${null},$(findstring xl,${CC}))
# NB: AIX is not debugged yet
MPICC := $(subst xlc,mpcc,${CC})
MPICXX := $(subst xlC,mpCC,${CXX})
endif # endif AIX VA Compiler Collection
ifneq (${null},$(findstring gcc,${CC}))
MPICC := $(subst gcc,mpicc,${CC})
MPICXX := $(subst g++,mpicxx,${CXX})
endif # endif GNU Compiler Collection
ifeq (icpc,$(firstword ${CXX}))
MPICC := $(subst icc,mpicc,${CC})
MPICXX := $(subst icpc,mpicxx,${CXX})
endif # endif Intel (Kai) C++ Compiler
ifneq (${null},$(findstring pathcc,${CC}))
MPICC := $(subst pathcc,mpicc,${CC})
MPICXX := $(subst pathCC,mpicxx,${CXX})
endif # endif Pathscale (QLogic) Compilers
CPP := ${MPICC}
endif # endif MPI
# Use MPI modifications, if any, to build all objects
CC := ${MPICC}
CXX := ${MPICXX}
# Disable OpenMP on platforms which automatically support it
ifneq (${OMP},Y)
ifneq (${null},$(findstring SGI,${PVM_ARCH}))
CFLAGS := $(filter-out -mp -mpio,${CFLAGS})
LDFLAGS := $(filter-out -mp -mpio,${LDFLAGS})
endif # endif SGI
CPPFLAGS += -U_OPENMP
endif # endif OMP
ifneq (${null},$(findstring LINUX,${PVM_ARCH}))
ifeq (${CCACHE},Y)
# Prefix CC and CXX with ccache
CC := ccache ${CC}
CXX := ccache ${CXX}
endif # !CCACHE
endif # !LINUX
ifeq (${STC},Y)
# Created statically linked executable
LDFLAGS := -static ${LDFLAGS}
endif # endif STC
# Define CPPCXXFLAGS after making all possible modifications to CPPFLAGS
# Add nco_c++ to directory search path
CXXCPPFLAGS := ${CPPFLAGS} -I${NCO_CXX_SRC_DIR}
# Define any remaining variables
libnco := ${MY_LIB_DIR}/libnco
# Default targets
all: dir lib ${MDL_BIN_TRG} data
non_ncap: dir lib $(filter-out ncap,${MDL_BIN_TRG}) data
# .PHONY tells make to remake the following non-file targets
.PHONY: all cln dst_cln dbg ${MDL_BIN_TRG}
# Delete default suffixes---this should increase speed
.SUFFIXES:
# Define suffixes that matter
.SUFFIXES: .cc .c .cu .o .F .d
# Delete targets that were not successfully made
.DELETE_ON_ERROR:
# Target directories which may not exist
dir: bin_dir obj_dir lib_dir
bin_dir:
# Compaq ALPHA complains about -install
# -install -d ${MY_BIN_DIR}
-mkdir -p ${MY_BIN_DIR}
lib_dir:
# -install -d ${MY_BIN_DIR}
-mkdir -p ${MY_LIB_DIR}
obj_dir:
# -install -d ${MY_BIN_DIR}
-mkdir -p ${MY_OBJ_DIR}
# The whole shebang
allinone: all nco_c++ nco++
nco_c++:
-cd ../src/nco_c++; ${MAKE} -f Makefile.old DBG=${DBG} NETCDF4=${NETCDF4} OMP=${OMP} OPTS=${OPTS} SZ=${SZ} lib dat all
nco++:
-cd ../src/nco++; ${MAKE} -f Makefile.old CNK=${CNK} DAP_NETCDF=${DAP_NETCDF} DAP_OPENDAP=${DAP_OPENDAP} DBG=${DBG} GSL=${GSL} NETCDF4=${NETCDF4} OMP=${OMP} OPTS=${OPTS} SZ=${SZ} UDUNITS2=${UDUNITS2} lib all
# Targets in bin
mpi: mpi_nco
mpinco: mpi_nco
mpnco: mpi_nco
mpi_nco: ${MDL_MPI_TRG}
-rm -f ${MY_BIN_DIR}/mpirun && ln -f -s `which mpirun` ${MY_BIN_DIR}/mpirun
mpncbo: ${MY_BIN_DIR}/mpncbo
${MY_BIN_DIR}/mpncbo: ${MY_OBJ_DIR}/mpncbo.o lib
${MPICC} -o $@${BNR_SFX} $< ${LDFLAGS}
chmod 755 $@${BNR_SFX}
cd ${MY_BIN_DIR}; rm -f mpncdiff; ln -s -f mpncbo mpncdiff
# 20050710: icc 8.1 with -axW flag dies compiling ncecat
# 20050915: Same problem occurs with MPI_FAKE version of mpncecat
ifeq (icc,$(firstword ${LINUX_CC}))
ncecat : CFLAGS := $(filter-out -axW,${CFLAGS})
ifeq (${MPI_FAKE},Y)
mpncecat : CFLAGS := $(filter-out -axW,${CFLAGS})
endif # !MPI_FAKE
endif # endif Intel (Kai) C Compiler
mpncecat: ${MY_BIN_DIR}/mpncecat
${MY_BIN_DIR}/mpncecat: ${MY_OBJ_DIR}/mpncecat.o lib
${MPICC} -o $@${BNR_SFX} $< ${LDFLAGS}
chmod 755 $@${BNR_SFX}
mpncflint: ${MY_BIN_DIR}/mpncflint
${MY_BIN_DIR}/mpncflint: ${MY_OBJ_DIR}/mpncflint.o lib
${MPICC} -o $@${BNR_SFX} $< ${LDFLAGS}
chmod 755 $@${BNR_SFX}
mpncpdq: ${MY_BIN_DIR}/mpncpdq
${MY_BIN_DIR}/mpncpdq: ${MY_OBJ_DIR}/mpncpdq.o lib
${MPICC} -o $@${BNR_SFX} $< ${LDFLAGS}
chmod 755 $@${BNR_SFX}
# cd ${MY_BIN_DIR}; rm -f mpncunpack; ln -s -f mpncpdq mpncunpack
# cd ${MY_BIN_DIR}; rm -f mpncpack; ln -s -f mpncpdq mpncpack
mpncra: ${MY_BIN_DIR}/mpncra
${MY_BIN_DIR}/mpncra: ${MY_OBJ_DIR}/mpncra.o lib
${MPICC} -o $@${BNR_SFX} $< ${LDFLAGS}
chmod 755 $@${BNR_SFX}
cd ${MY_BIN_DIR}; rm -f mpncea; ln -s -f mpncra mpncea
cd ${MY_BIN_DIR}; rm -f mpncrcat; ln -s -f mpncra mpncrcat
mpncwa: ${MY_BIN_DIR}/mpncwa
${MY_BIN_DIR}/mpncwa: ${MY_OBJ_DIR}/mpncwa.o ${MY_OBJ_DIR}/ncap_yacc.o ${MY_OBJ_DIR}/ncap_lex.o ${MY_OBJ_DIR}/ncap_utl.o lib
${MPICC} -o $@${BNR_SFX} $< ${MY_OBJ_DIR}/ncap_yacc.o ${MY_OBJ_DIR}/ncap_lex.o ${MY_OBJ_DIR}/ncap_utl.o ${LDFLAGS}
chmod 755 $@${BNR_SFX}
ncatted: ${MY_BIN_DIR}/ncatted
${MY_BIN_DIR}/ncatted: ${MY_OBJ_DIR}/ncatted.o lib
${CC} -o $@${BNR_SFX} $< ${LDFLAGS}
chmod 755 $@${BNR_SFX}
ncbo: ${MY_BIN_DIR}/ncbo
${MY_BIN_DIR}/ncbo: ${MY_OBJ_DIR}/ncbo.o lib
${CC} -o $@${BNR_SFX} $< ${LDFLAGS}
chmod 755 $@${BNR_SFX}
cd ${MY_BIN_DIR}; rm -f ncdiff; ln -s -f ncbo ncdiff
ncecat: ${MY_BIN_DIR}/ncecat
${MY_BIN_DIR}/ncecat: ${MY_OBJ_DIR}/ncecat.o lib
${CC} -o $@${BNR_SFX} $< ${LDFLAGS}
chmod 755 $@${BNR_SFX}
ncflint: ${MY_BIN_DIR}/ncflint
${MY_BIN_DIR}/ncflint: ${MY_OBJ_DIR}/ncflint.o lib
${CC} -o $@${BNR_SFX} $< ${LDFLAGS}
chmod 755 $@${BNR_SFX}
ncks: ${MY_BIN_DIR}/ncks
${MY_BIN_DIR}/ncks: ${MY_OBJ_DIR}/ncks.o lib
${CC} -o $@${BNR_SFX} $< ${LDFLAGS}
chmod 755 $@${BNR_SFX}
ncpdq: ${MY_BIN_DIR}/ncpdq
${MY_BIN_DIR}/ncpdq: ${MY_OBJ_DIR}/ncpdq.o lib
${CC} -o $@${BNR_SFX} $< ${LDFLAGS}
chmod 755 $@${BNR_SFX}
cd ${MY_BIN_DIR}; rm -f ncunpack; ln -s -f ncpdq ncunpack
cd ${MY_BIN_DIR}; rm -f ncpack; ln -s -f ncpdq ncpack
ncra: ${MY_BIN_DIR}/ncra
${MY_BIN_DIR}/ncra: ${MY_OBJ_DIR}/ncra.o lib
${CC} -o $@${BNR_SFX} $< ${LDFLAGS}
chmod 755 $@${BNR_SFX}
cd ${MY_BIN_DIR}; rm -f ncea; ln -s -f ncra ncea
cd ${MY_BIN_DIR}; rm -f ncrcat; ln -s -f ncra ncrcat
ncrename: ${MY_BIN_DIR}/ncrename
${MY_BIN_DIR}/ncrename: ${MY_OBJ_DIR}/ncrename.o lib
${CC} -o $@${BNR_SFX} $< ${LDFLAGS}
chmod 755 $@${BNR_SFX}
ncwa: ${MY_BIN_DIR}/ncwa
${MY_BIN_DIR}/ncwa: ${MY_OBJ_DIR}/ncwa.o ${MY_OBJ_DIR}/ncap_yacc.o ${MY_OBJ_DIR}/ncap_lex.o ${MY_OBJ_DIR}/ncap_utl.o lib
${CC} -o $@${BNR_SFX} $< ${MY_OBJ_DIR}/ncap_yacc.o ${MY_OBJ_DIR}/ncap_lex.o ${MY_OBJ_DIR}/ncap_utl.o ${LDFLAGS}
chmod 755 $@${BNR_SFX}
bin: ${MDL_BIN_TRG}
binclean: bin_cln
bin_cln:
rm -f ${MDL_BIN}
mpiclean: mpi_cln
mpi_cln:
rm -f ${MDL_MPI_BIN} ${MDL_MPI_OBJ}
mpi_fake_cp: ${MDL_MPI_TRG}
- for fl in ${MDL_MPI_TRG_SMP}; do /bin/cp -f ${MY_BIN_DIR}/$$fl ${MY_BIN_DIR}/mp$$fl; done
# 20050916 fxm: not sure why simpler substitution method does not work
# - for fl in ${MDL_MPI_TRG}; do /bin/cp -f ${MY_BIN_DIR}/$$fl ${MY_BIN_DIR}/$(subst mp,,$$fl); done
strip:
- printf "Before stripping...\n";ls -l ${MDL_BIN};strip ${MDL_BIN};printf "After stripping...\n";ls -l ${MDL_BIN}
# Targets in bld
buildclean: bld_cln
bld_cln:
cd ${MY_BLD_DIR}; rm -f TAGS
libtest: libtst
libtst: libnco_tst libnco_c++_tst
libnco_tst: ${MY_BLD_DIR}/libnco_tst
${MY_BLD_DIR}/libnco_tst: ${MY_BLD_DIR}/libnco_tst.o lib
${CC} -o $@${BNR_SFX} $< ${LDFLAGS}
chmod 755 $@${BNR_SFX}
libnco_c++_tst: ${MY_BLD_DIR}/libnco_c++_tst
${MY_BLD_DIR}/libnco_c++_tst: ${MY_BLD_DIR}/libnco_c++_tst.o lib
${CXX} -o $@${BNR_SFX} $< ${LDFLAGS}
chmod 755 $@${BNR_SFX}
rpm: ${MY_BLD_DIR}/nco.spec # Building rpm requires root priveleges, e.g., sudo make NCO_VRS=4.0.2 rpm
# Building NCO RPM requires following packages
# rpm -q bison flex netcdf-devel libtool automake autoconf udunits udunits-devel curl-devel libxml2 libxml2-devel librx-devel
# sudo yum install bison flex netcdf-devel libtool automake autoconf udunits udunits-devel curl-devel libxml2 libxml2-devel librx-devel
cd ${DATA}/tmp; \
/bin/rm -fr ${DATA}/tmp/nco*; \
cp -r ${HOME}/nco nco-${NCO_VRS}; \
tar cvzf nco-${NCO_VRS}.tar.gz ./nco-${NCO_VRS}; \
mv ${DATA}/tmp/nco-${NCO_VRS}.tar.gz /usr/src/redhat/SOURCES; \
/bin/rm -f /usr/src/redhat/SPECS/nco-${NCO_VRS}.spec; \
ln -s ${HOME}/nco/bld/nco.spec /usr/src/redhat/SPECS/nco-${NCO_VRS}.spec; \
cd /usr/src/redhat/SPECS; \
rpmbuild -ba --sign nco-${NCO_VRS}.spec;
# Crypographically sign RPM packages with GPG: http://fedoranews.org/tchung/gpg
# gpg --export -a 'Charlie Zender' > ~/GPG-zender # Export public key from key ring to text file
# sudo rpm --import ~/GPG-zender # Import public key to RPM database
# rpm -q gpg-pubkey --qf '%{name}-%{version}-%{release} --> %{summary}\n' # Verify list of GPG public keys in RPM database
# Verify ~/.rpmmacros file specifies _signature and gpg_name
# sudo rpm --addsign /usr/src/redhat/SRPMS/nco-${NCO_VRS}-?.src.rpm /usr/src/redhat/RPMS/i386/nco-${NCO_VRS}-?.i386.rpm # Sign RPM packages
# rpm --checksig /usr/src/redhat/SRPMS/nco-${NCO_VRS}-?.src.rpm /usr/src/redhat/RPMS/i386/nco-${NCO_VRS}-?.i386.rpm # Check signatures
rpmnet: ${MY_BLD_DIR}/nco.spec # Building rpm requires root priveleges, e.g., sudo make NCO_VRS=3.1.8 rpmnet
- if test -f /usr/src/redhat/SOURCES/nco-${NCO_VRS}.tar.gz; then printf "Using existing nco-${NCO_VRS}.tar.gz\n" ; else ${MY_BIN_DIR}/ncks -R -p ftp://dust.ess.uci.edu/pub/zender/nco -l /usr/src/redhat/SOURCES nco-${NCO_VRS}.tar.gz; fi
/bin/rm -f /usr/src/redhat/SPECS/nco-${NCO_VRS}.spec; \
cd /usr/src/redhat/SOURCES; \
tar xvzf nco-${NCO_VRS}.tar.gz ./nco-${NCO_VRS}/bld/nco.spec; \
mv ./nco-${NCO_VRS}/bld/nco.spec /usr/src/redhat/SPECS/nco.spec; \
cd /usr/src/redhat/SPECS; \
rpmbuild -ba --sign nco.spec; \
scp /usr/src/redhat/SRPMS/nco-${NCO_VRS}-?.src.rpm /usr/src/redhat/RPMS/i386/nco-${NCO_VRS}-?.i386.rpm zender@dust.ess.uci.edu:/var/www/html/nco/src
rpm_cln:
rpm --erase ${MDL_RPM_NST_NM}
# Targets in bm
bench: bm
bnch: bm
bm:
cd ${MY_BM_DIR}; \
env MY_BIN_DIR=${MY_BIN_DIR} ../bm/nco_bm.pl --dbg=0 --bench --udpreport ${FL_FMT_SNG} ${MPI_PRC_SNG} ${THR_NBR_SNG}
file: fl
fl:
cd ${MY_BM_DIR}; \
env MY_BIN_DIR=${MY_BIN_DIR} ../bm/nco_bm.pl --dbg=0 --test_files=A --udpreport ${FL_FMT_SNG} ${MPI_PRC_SNG} ${THR_NBR_SNG}
regression: tst
rgr: tst
test: tst
tst: dat
cd ${MY_BM_DIR}; \
env MY_BIN_DIR=${MY_BIN_DIR} ../bm/nco_bm.pl --dbg=0 --regress --udpreport ${FL_FMT_SNG} ${MPI_PRC_SNG} ${THR_NBR_SNG}
# Targets in dat
dap: data
- cd ~/nco/data; scp in.nc in.cdl dust.ess.uci.edu:/var/www/html/dodsdata; scp in.nc in.cdl esmf.ess.uci.edu:/var/www/html/dodsdata; scp in.nc in.cdl esmf.ess.uci.edu:/data/dodsdata
data: dat
dat: ${MY_DAT_DIR}/in.nc ${MY_DAT_DIR}/in_rec_zero.nc
-for fl in ${MDL_DAT_STB}; do cd ${MY_DAT_DIR}; ln -s -f in.nc $$fl; done
${MY_DAT_DIR}/in.nc: ${MY_DAT_DIR}/in.cdl
ncgen -b -o $@ $<
${MY_DAT_DIR}/in_rec_zero.nc: ${MY_DAT_DIR}/in_rec_zero.cdl
ncgen -b -o $@ $<
dataclean: dat_cln
dat_cln:
rm -f ${MDL_DAT}
cd ${MY_DAT_DIR}; rm -f foo*
tst_ftp: dat
- if test -f ${MY_DAT_DIR}/nco_tst.nc; then printf "" ; else ${MY_BIN_DIR}/ncks -q -R -p ftp://dust.ess.uci.edu/pub/zender/nco -l ${MY_DAT_DIR} nco_tst.nc; if [ $? != 0 ]; then printf "WARNING: Unable to retrieve ftp://dust.ess.uci.edu/pub/zender/nco/nco_tst.nc required for self-test, possible problem with getting through your firewall? Manually download and install in directory ../data to continue self test...\n"; fi; fi
cd ${MY_BLD_DIR}; \
env MY_BIN_DIR=${MY_BIN_DIR} MY_DAT_DIR=${MY_DAT_DIR} ./nco_tst.pl
testclean: tst_cln
tst_cln:
cd ${MY_DAT_DIR}; rm -f foo* nco_tst.nc
# Targets in doc
# Each make directive line spawns a separate shell so must use `cd dir;cmd' format
doc: ${MY_DOC_DIR}/nco.dvi ${MY_DOC_DIR}/nco.html ${MY_DOC_DIR}/nco.info ${MY_DOC_DIR}/nco.ps ${MY_DOC_DIR}/nco.pdf ${MY_DOC_DIR}/nco.txt ${MY_DOC_DIR}/nco.xml
${MY_DOC_DIR}/nco.dvi: ${MY_DOC_DIR}/nco.texi
cd ${MY_DOC_DIR}; texi2dvi --output=$@ $<
${MY_DOC_DIR}/nco.info: ${MY_DOC_DIR}/nco.texi
cd ${MY_DOC_DIR}; makeinfo --no-split --output=$@ $<
${MY_DOC_DIR}/nco.html: ${MY_DOC_DIR}/nco.texi
cd ${MY_DOC_DIR}; texi2html -monolithic -verbose $<
# cd ${MY_DOC_DIR}; makeinfo --html --no-split --output=$@ $<
${MY_DOC_DIR}/nco.ps: ${MY_DOC_DIR}/nco.dvi
cd ${MY_DOC_DIR}; dvips -o $@ nco.dvi
${MY_DOC_DIR}/nco.pdf: ${MY_DOC_DIR}/nco.texi
cd ${MY_DOC_DIR}; texi2dvi --pdf --output=$@ $<
# cd ${MY_DOC_DIR}; ps2pdf -dMaxSubsetPct=100 -dCompatibilityLevel=1.2 -dSubsetFonts=true -dEmbedAllFonts=true nco.ps $@
${MY_DOC_DIR}/nco.txt: ${MY_DOC_DIR}/nco.texi
cd ${MY_DOC_DIR}; makeinfo --no-headers --no-split --output=$@ $<
# Neither of these xml formats seems to be viewable
${MY_DOC_DIR}/nco.xml: ${MY_DOC_DIR}/nco.texi
cd ${MY_DOC_DIR}; makeinfo --xml --no-split --output=$@ $<
# cd ${MY_DOC_DIR}; makeinfo --docbook --no-split --output=$@ $<
docclean: doc_cln
doc_cln:
cd ${MY_DOC_DIR}; rm -f nco.info* nco.dvi nco.html* nco.ps nco.pdf *~
# Targets in dpn
depend: dpn
dpn: ${MDL_DPN}
dpn_cln:
rm -f ${MDL_DPN}
# Targets in inc
include: inc
inc: ${MDL_INC}
inc_cln:
rm -f ${MDL_INC}
love:
echo "Not war?"
# Targets in lib
library: lib
lib : inc ${libnco}.a
ifeq (${PVM_ARCH},MACOSX)
ranlib ${libnco}.a
endif # endif LINUX
# ${libnco}.a: ${libnco}.a(${MY_OBJ_DIR}/ncap_utl.o)
# If not using glibc, build Sittler's getopt() and getopt_long() functions
ifeq (${null},$(findstring ${PVM_ARCH},FREEBSDLINUXALPHALINUXAMD64LINUXARMMACOSXWIN32))
${libnco}.a: ${libnco}.a(${MY_OBJ_DIR}/nco_getopt.o)
endif # endif not glibc
${libnco}.a: ${libnco}.a(${MY_OBJ_DIR}/nco_att_utl.o) \
${libnco}.a(${MY_OBJ_DIR}/nco_aux.o) \
${libnco}.a(${MY_OBJ_DIR}/nco_bnr.o) \
${libnco}.a(${MY_OBJ_DIR}/nco_cln_utl.o) \
${libnco}.a(${MY_OBJ_DIR}/nco_cnf_dmn.o) \
${libnco}.a(${MY_OBJ_DIR}/nco_cnf_typ.o) \
${libnco}.a(${MY_OBJ_DIR}/nco_cnk.o) \
${libnco}.a(${MY_OBJ_DIR}/nco_cnv_arm.o) \
${libnco}.a(${MY_OBJ_DIR}/nco_cnv_csm.o) \
${libnco}.a(${MY_OBJ_DIR}/nco_ctl.o) \
${libnco}.a(${MY_OBJ_DIR}/nco_dbg.o) \
${libnco}.a(${MY_OBJ_DIR}/nco_dmn_utl.o) \
${libnco}.a(${MY_OBJ_DIR}/nco_fl_utl.o) \
${libnco}.a(${MY_OBJ_DIR}/nco_lmt.o) \
${libnco}.a(${MY_OBJ_DIR}/nco_lst_utl.o) \
${libnco}.a(${MY_OBJ_DIR}/nco_mmr.o) \
${libnco}.a(${MY_OBJ_DIR}/nco_msa.o) \
${libnco}.a(${MY_OBJ_DIR}/nco_mss_val.o) \
${libnco}.a(${MY_OBJ_DIR}/nco_netcdf.o) \
${libnco}.a(${MY_OBJ_DIR}/nco_omp.o) \
${libnco}.a(${MY_OBJ_DIR}/nco_pck.o) \
${libnco}.a(${MY_OBJ_DIR}/nco_prn.o) \
${libnco}.a(${MY_OBJ_DIR}/nco_rec_var.o) \
${libnco}.a(${MY_OBJ_DIR}/nco_rth_flt.o) \
${libnco}.a(${MY_OBJ_DIR}/nco_rth_utl.o) \
${libnco}.a(${MY_OBJ_DIR}/nco_scl_utl.o) \
${libnco}.a(${MY_OBJ_DIR}/nco_scm.o) \
${libnco}.a(${MY_OBJ_DIR}/nco_sng_utl.o) \
${libnco}.a(${MY_OBJ_DIR}/nco_var_avg.o) \
${libnco}.a(${MY_OBJ_DIR}/nco_var_lst.o) \
${libnco}.a(${MY_OBJ_DIR}/nco_var_rth.o) \
${libnco}.a(${MY_OBJ_DIR}/nco_var_scv.o) \
${libnco}.a(${MY_OBJ_DIR}/nco_var_utl.o)
libclean: lib_cln
lib_cln:
rm -f ${libnco}.a ${libnco}.* ${libnco}++.a ${libnco}_c++.a
# Targets in man
man: ${MDL_MAN}
cd ../man;sudo cp -f *.1 ${MY_MAN_DIR}/man1
man_cln:
rm -f ${MDL_MAN}
# Targets in obj
object: obj
obj: ${MDL_OBJ}
objclean: obj_cln
obj_cln:
rm -f ${MDL_OBJ}
# Targets in root
autotools: dst_cln
- cd ..; aclocal;autoheader;automake --foreign;autoconf ; ./configure --enable-optimize-custom --prefix=${HOME} --bindir=${MY_BIN_DIR} --datadir=${HOME}/nco/data --libdir=${MY_LIB_DIR} --mandir=${HOME}/nco/man ; ${MAKE} install
rootclean: root_cln
root_cln:
- cd ..; rm -f config.h.in config.h config.guess config.log config.status config.sub libtool Makefile stamp-h1; rm -r -f autom4te.cache conftest
# Targets in src
src: ${MDL_NCAP}
src_cln:
rm -f ${MDL_NCAP}
# Targets in /usr/local
sys: ${MDL_BIN_TRG}
- cd ${MY_BIN_DIR};sudo /bin/cp -f ${MDL_BIN_TRG} ncap2 /usr/local/bin; cd /usr/local/bin; sudo rm -f ncdiff ncea ncrcat ncunpack; sudo ln -s -f ncbo ncdiff; sudo ln -s -f ncra ncea; sudo ln -s -f ncra ncrcat; sudo ln -s -f ncpdq ncunpack; sudo ln -s -f ncpdq ncpack; cd ${HOME}/nco/src/nco++; ${MAKE} -f Makefile.old OPTS=${OPTS} $@
sys_cln:
- cd /usr/local/bin;rm -f ${MDL_BIN_TRG}
# Housekeeping
clean: cln
cln: lib_cln dpn_cln obj_cln src_cln tst_cln
cd ${MY_DOC_DIR}; rm -f nco.aux nco.cp nco.cps nco.fn nco.ky nco.log nco.pg nco.toc nco.tp nco.vr
debug: dbg
dbg:
@printf "ABI = ${ABI}\n"
@printf "AR = ${AR}\n"
@printf "BNR_SFX = ${BNR_SFX}\n"
@printf "CC = ${CC}\n"
@printf "CCACHE = ${CCACHE}\n"
@printf "CFLAGS = ${CFLAGS}\n"
@printf "CNK = ${CNK}\n"
@printf "CPP = ${CPP}\n"
@printf "CPPFLAGS = ${CPPFLAGS}\n"
@printf "CPP_PTH = ${CPP_PTH}\n"
@printf "CPP_TKN = ${CPP_TKN}\n"
@printf "CXX = ${CXX}\n"
@printf "CXXFLAGS = ${CXXFLAGS}\n"
@printf "DAP_NETCDF = ${DAP_NETCDF}\n"
@printf "DAP_NETCDF_ROOT = ${DAP_NETCDF_ROOT}\n"
@printf "DAP_OPENDAP = ${DAP_OPENDAP}\n"
@printf "DAP_OPENDAP_ROOT = ${DAP_OPENDAP_ROOT}\n"
@printf "DBG = ${DBG}\n"
@printf "FC = ${FC}\n"
@printf "FFLAGS = ${FFLAGS}\n"
@printf "FL_FMT = ${FL_FMT}\n"
@printf "GCC_RCH_ARG = ${GCC_RCH_ARG}\n"
@printf "GSL = $(GSL)\n"
@printf "HDF5_ROOT = ${HDF5_ROOT}\n"
@printf "HDF5_INC = ${HDF5_INC}\n"
@printf "HDF5_LIB = ${HDF5_LIB}\n"
@printf "HOST = ${HOST}\n"
@printf "HOSTNAME = ${HOSTNAME}\n"
@printf "ICC_RCH_ARG = ${ICC_RCH_ARG}\n"
@printf "LAMMPICC = ${LAMMPICC}\n"
@printf "LAMMPICXX = ${LAMMPICXX}\n"
@printf "LDFLAGS = ${LDFLAGS}\n"
@printf "LEX = ${LEX}\n"
@printf "LFLAGS = ${LFLAGS}\n"
@printf "LINUX_CC = $(LINUX_CC)\n"
@printf "LINUX_CXX = $(LINUX_CXX)\n"
@printf "MDL_BIN_TRG = ${MDL_BIN_TRG}\n"
@printf "MDL_DPN = ${MDL_DPN}\n"
@printf "MDL_MAN = ${MDL_MAN}\n"
@printf "MDL_MPI_TRG = ${MDL_MPI_TRG}\n"
@printf "MDL_OBJ = ${MDL_OBJ}\n"
@printf "MDL_PTH = ${MDL_PTH}\n"
@printf "MDL_RPM_NST_NM = ${MDL_RPM_NST_NM}\n"
@printf "MDL_SRC = ${MDL_SRC}\n"
@printf "MPICC = ${MPICC}\n"
@printf "MPICH_CC = ${MPICH_CC}\n"
@printf "MPICH_CXX = ${MPICH_CXX}\n"
@printf "MPICXX = ${MPICXX}\n"
@printf "MPI_PRC = ${MPI_PRC}\n"
@printf "MPI_PRC_SNG = ${MPI_PRC_SNG}\n"
@printf "MPI_ROOT = ${MPI_ROOT}\n"
@printf "MY_BIN_DIR = ${MY_BIN_DIR}\n"
@printf "MY_BLD_DIR = ${MY_BLD_DIR}\n"
@printf "MY_BLD_DIR = ${MY_BLD_DIR}\n"
@printf "MY_DAT_DIR = ${MY_DAT_DIR}\n"
@printf "MY_DOC_DIR = ${MY_DOC_DIR}\n"
@printf "MY_DPN_DIR = ${MY_DPN_DIR}\n"
@printf "MY_INC_DIR = ${MY_INC_DIR}\n"
@printf "MY_LIB_DIR = ${MY_LIB_DIR}\n"
@printf "MY_MAN_DIR = ${MY_MAN_DIR}\n"
@printf "MY_OBJ_DIR = ${MY_OBJ_DIR}\n"
@printf "NCO_LDFLAGS = $(NCO_LDFLAGS)\n"
@printf "NCO_LIBS = $(NCO_LIBS)\n"
@printf "NCO_VRS = ${NCO_VRS}\n"
@printf "NC_LDFLAGS = $(NC_LDFLAGS)\n"
@printf "NC_LIBS = $(NC_LIBS)\n"
@printf "NETCDF4 = ${NETCDF4}\n"
@printf "NETCDF4_ROOT = ${NETCDF4_ROOT}\n"
@printf "NETCDF_INC = ${NETCDF_INC}\n"
@printf "NETCDF_LIB = ${NETCDF_LIB}\n"
@printf "NETCDF_ROOT = ${NETCDF_ROOT}\n"
@printf "OMP = ${OMP}\n"
@printf "PGI_RCH_ARG = ${PGI_RCH_ARG}\n"
@printf "PSC_RCH_ARG = ${PSC_RCH_ARG}\n"
@printf "PNETCDF = ${PNETCDF}\n"
@printf "PVM_ARCH = ${PVM_ARCH}\n"
@printf "RPM = ${RPM}\n"
@printf "SRC_LST = $(SRC_LST)\n"
@printf "STC = ${STC}\n"
@printf "SZ = ${SZ}\n"
@printf "THR_NBR = ${THR_NBR}\n"
@printf "THR_NBR_SNG = ${THR_NBR_SNG}\n"
@printf "TMP_LDFLAGS = ${TMP_LDFLAGS}\n"
@printf "TMP_LIBS = ${TMP_LIBS}\n"
@printf "UDUNITS = $(UDUNITS)\n"
@printf "UDUNITS2 = $(UDUNITS2)\n"
@printf "UDUNITS_INC = $(UDUNITS_INC)\n"
@printf "UDUNITS_LIB = $(UDUNITS_LIB)\n"
@printf "VPATH = ${VPATH}\n"
@printf "VRS_SNG = ${VRS_SNG}\n"
@printf "YACC = ${YACC}\n"
@printf "YFLAGS = ${YFLAGS}\n"
@printf "ZNETCDF = ${ZNETCDF}\n"
distclean: dst_cln
dst_cln: cln bin_cln dat_cln doc_cln root_cln
cd ${MY_BLD_DIR}; rm -f *~
cd ${MY_DAT_DIR}; rm -f in.nc in_rec_zero.nc *~
tags:
etags ${MY_SRC_DIR}/*.h $(filter-out ${TAGS_FILTER_FILES},${SRC_LST}) ${MDL_DOC_SRC} ${MDL_MAN} ${MDL_BLD_SRC} ${MDL_CXX_SRC} ${MDL_NCAP_SRC}
# Reset internal YACC and LEX patterns
%.c : %.y
%.c : %.l
# It is safest to do both YACC and LEX after either file changes
# Otherwise only changing one and then switching, e.g., from bison to yacc, can cause problems
# NB: Bison has problem when bison.simple declares yyparse() as int yyparse (void);
# Solution is to comment out that definition in bison.simple
ifeq (${YACC},bison)
${MY_SRC_DIR}/%_yacc.c ${MY_SRC_DIR}/%_yacc.h : ${MY_SRC_DIR}/%_yacc.y
${YACC} ${YFLAGS} --output=$(basename $<).c -d $<
#${MY_SRC_DIR}/%_yacc.c ${MY_SRC_DIR}/%_yacc.h : ${MY_SRC_DIR}/%_yacc.y
# ${YACC} ${YFLAGS} --file-prefix=$(notdir $($(basename $<))) -d $<
#%_yacc.c %_yacc.h : %_yacc.y
# ${YACC} ${YFLAGS} --file-prefix=$(notdir $($(basename $<))) -d $<
endif
ifeq (${YACC},yacc)
%.tab.c %.tab.h : %.y
${YACC} ${YFLAGS} $<
mv y.tab.c $(basename $<).c
mv y.tab.h $(basename $<).h
endif
%_lex.c : %_lex.l
${LEX} ${LFLAGS} $<
mv lex.${NCO_YY_PFX}.c $(basename $<).c
# ncap, and only ncap, requires AIX system C++ library
ifneq (${null},$(findstring AIX,${PVM_ARCH}))
ifneq (${null},$(findstring xl,${CC}))
# Target-specific variable values syntax TARGET ... : VARIABLE-ASSIGNMENT
# Rules begin in leftmost column else interpreted as commands
ncap : LDFLAGS += -lC
endif # endif AIX VA Compiler Collection
endif # endif AIX
# For some reason, ncap_lex.c is not remade when I expect it to be, so I explicitly remove the object file every time
ncap: ${MY_OBJ_DIR}/ncap_yacc.o ${MY_OBJ_DIR}/ncap_lex.o ncap_yacc.h ${MY_OBJ_DIR}/ncap.o ${MY_OBJ_DIR}/ncap_utl.o ${libnco}.a
# ${YACC} --name-prefix=nco_
ifneq (${null},$(findstring ${PVM_ARCH},LINUXALPHALINUXAMD64LINUXARMFREEBSDWIN32SGIMP64))
${CC} ${CFLAGS} -o ${MY_BIN_DIR}/$@ ${MY_OBJ_DIR}/$@.o ${MY_OBJ_DIR}/ncap_utl.o ${MY_OBJ_DIR}/$@_yacc.o ${MY_OBJ_DIR}/$@_lex.o ${LDFLAGS}
else
${CC} ${CFLAGS} -o ${MY_BIN_DIR}/$@ ${MY_OBJ_DIR}/$@.o ${MY_OBJ_DIR}/ncap_utl.o ${MY_OBJ_DIR}/$@_yacc.o ${MY_OBJ_DIR}/$@_lex.o -ll -ly ${LDFLAGS}
endif
chmod 755 ${MY_BIN_DIR}/$@${BNR_SFX}
ncap2 :
-cd ../src/nco++; ${MAKE} -f Makefile.old DAP_NETCDF=${DAP_NETCDF} DAP_OPENDAP=${DAP_OPENDAP} DBG=${DBG} GSL=${GSL} NETCDF4=${NETCDF4} OMP=${OMP} OPTS=${OPTS} SZ=${SZ} UDUNITS2=${UDUNITS2} all
# /bin/rm -f ${MDL_NCAP} ${MY_OBJ_DIR}/$@_lex.o ${MY_OBJ_DIR}/ncap_yacc.h ${MY_OBJ_DIR}/ncap_yacc.c
# Create dependency files only if they will not be immediately deleted
INCLUDE_DPN := TRUE
GOALS_WHICH_DELETE_DEPENDENCY_FILES := cln clean dir distclean dst_cln dpn_cln tags uninstall
ifeq (${null},$(findstring $(MAKECMDGOALS),${GOALS_WHICH_DELETE_DEPENDENCY_FILES}))
INCLUDE_DPN := TRUE
else
INCLUDE_DPN := FALSE
endif
ifeq (${INCLUDE_DPN},TRUE)
-include ${MDL_DPN}
endif
|