This repository was archived by the owner on Aug 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
901 changed files
with
649,643 additions
and
408 deletions.
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,90 @@ | ||
| #****************************************************************************** | ||
| # | ||
| # Unit Name : Makefile.Defines | ||
| # Unit Type : makefile | ||
| # Project : SWIFTER | ||
| # Package : N/A | ||
| # Language : GNU makefile syntax | ||
| # | ||
| # Description : Contains user-modifiable macro definitions used in the build | ||
| # process for the Swifter library, drivers and tools, as well as | ||
| # the FXDR library | ||
| # | ||
| # Input | ||
| # Arguments : none | ||
| # Terminal : none | ||
| # File : none | ||
| # | ||
| # Output | ||
| # Arguments : none | ||
| # Terminal : none | ||
| # File : none | ||
| # | ||
| # Invocation : include Makefile.Defines (from within another makefile) | ||
| # | ||
| # Notes : | ||
| # | ||
| #****************************************************************************** | ||
|
|
||
| # System utilities | ||
|
|
||
| SHELL = /bin/sh | ||
| AR = ar | ||
| RANLIB = ranlib | ||
| INSTALL = install | ||
| INSTALL_PROGRAM = $(INSTALL) -m 755 | ||
| INSTALL_DATA = $(INSTALL) -m 644 | ||
|
|
||
| # Swifter definitions | ||
|
|
||
| SWIFTER_HOME = # Full path to your Swifter directory goes here | ||
| USER_MODULES = | ||
|
|
||
| # Compiler definitions | ||
|
|
||
| # DO NOT include in FFLAGS the "-c" option to compile object only | ||
| # this is done explicitly as needed in the Makefile | ||
|
|
||
| #FORTRAN = ifort | ||
| #FFLAGS = -O3 -openmp -132 -align all -pad -ip -fp-model strict -prec-div -prec-sqrt -ftz -assume protect-parens | ||
|
|
||
| FORTRAN = gfortran | ||
| FFLAGS = -O3 | ||
|
|
||
| # DO NOT include in CFLAGS the "-c" option to compile object only | ||
| # this is done explicitly as needed in the Makefile | ||
|
|
||
| CC = cc | ||
| CFLAGS = -O | ||
|
|
||
| 64_BIT_REALS = -r8 | ||
|
|
||
| # FXDR Makefile compatibility - DO NOT ALTER | ||
|
|
||
| F77CMD = $(FORTRAN) | ||
| F77OPTS = $(FFLAGS) | ||
| CCCMD = $(CC) | ||
| CCOPTS = $(CFLAGS) | ||
|
|
||
| #****************************************************************************** | ||
| # | ||
| # Author(s) : David E. Kaufmann | ||
| # | ||
| # Revision Control System (RCS) Information | ||
| # | ||
| # Source File : $RCSfile: Makefile.Defines,v $ | ||
| # Full Path : $Source: /d1/kaufmann/development/RCS/Makefile.Defines,v $ | ||
| # Revision : $Revision: 0.1 $ | ||
| # Date : $Date: 2003/04/15 22:56:57 $ | ||
| # Programmer : $Author: kaufmann $ | ||
| # Locked By : $Locker: $ | ||
| # State : $State: Exp $ | ||
| # | ||
| # Modification History: | ||
| # | ||
| # $Log: Makefile.Defines,v $ | ||
| # Revision 0.1 2003/04/15 22:56:57 kaufmann | ||
| # Initial implementation | ||
| # | ||
| # | ||
| #****************************************************************************** |
Oops, something went wrong.