Skip to content
This repository was archived by the owner on Aug 28, 2024. It is now read-only.

Commit

Permalink
Merge branch 'debug' into OOPTides
Browse files Browse the repository at this point in the history
  • Loading branch information
daminton committed Aug 6, 2021
2 parents cf94bf9 + 7dc73e9 commit 8c4921a
Show file tree
Hide file tree
Showing 901 changed files with 649,643 additions and 408 deletions.
8 changes: 3 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,9 @@ collresolve/config.h


#Documentation
#Disable for now
docs/
#!docs/*
#!docs/*/*
#!docs/*/*/*
!docs/*
!docs/*/*
!docs/*/*/*


python/swiftest/tests/convert_code_type/swift2swifter/pl.swift2swifter.in
Expand Down
90 changes: 90 additions & 0 deletions Makefile.Defines_example
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
#
#
#******************************************************************************
Loading

0 comments on commit 8c4921a

Please sign in to comment.