Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
giraffe
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
3
Issues
3
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nek5000
giraffe
Commits
e25e7e2b
Commit
e25e7e2b
authored
Jul 20, 2017
by
Ron Rahaman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed outdated makefiles
parent
7eb07262
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
0 additions
and
464 deletions
+0
-464
examples/coupled_heat_conduction/Makefile
examples/coupled_heat_conduction/Makefile
+0
-321
examples/coupled_heat_conduction/SESSION.NAME
examples/coupled_heat_conduction/SESSION.NAME
+0
-2
examples/coupled_heat_conduction/makenek
examples/coupled_heat_conduction/makenek
+0
-92
examples/template_example/Makefile
examples/template_example/Makefile
+0
-49
No files found.
examples/coupled_heat_conduction/Makefile
deleted
100644 → 0
View file @
7eb07262
This diff is collapsed.
Click to expand it.
examples/coupled_heat_conduction/SESSION.NAME
deleted
100644 → 0
View file @
7eb07262
rod12
/Users/rahaman/repos/moon/examples/coupled_heat_conduction
examples/coupled_heat_conduction/makenek
deleted
100755 → 0
View file @
7eb07262
#!/bin/bash
# Nek5000 build config file
# (c) 2008,2009,2010 UCHICAGO ARGONNE, LLC
# source path
SOURCE_ROOT
=
"
$HOME
/repos/moon/src/Nek5000"
SOURCE_ROOT_CORE
=
"
$SOURCE_ROOT
/core"
SOURCE_ROOT_JL
=
"
$SOURCE_ROOT
/jl"
SOURCE_ROOT_CMT
=
"
$SOURCE_ROOT
/core/cmt"
# Fortran compiler
F77
=
"mpif77 -Wa,-q -Wl,-no_compact_unwind"
# C compiler
CC
=
"mpicc -Wl,-no_compact_unwind"
# pre-processor symbol list
# (set PPLIST=? to get a list of available symbols)
#PPLIST="?"
# OPTIONAL SETTINGS
# -----------------
# enable MPI (default true)
#IFMPI="false"
# enable CMT (default false)
#IFCMT="true"
# auxilliary files to compile
# NOTE: source files have to located in the same directory as makenek
# a makefile_usr.inc has to be provided containing the build rules
#USR="foo.o"
# linking flags
#USR_LFLAGS="-L/usr/lib -lfoo"
# generic compiler flags
#G="-g"
# optimization flags
#OPT_FLAGS_STD=""
#OPT_FLAGS_MAG=""
# enable AMG coarse grid solver (default XXT)
#IFAMG="true"
#IFAMG_DUMP="true"
# CVODE path
#CVODE_DIR=$HOME/cvode/lib
# MOAB/iMESH path
#MOAB_DIR="$HOME/moab"
# For linking to MOAB, the following might be needed:
# NOTE: compiler specific, use the appropriate one depending on your compiler
# GNU:
# USR_LFLAGS="-lmpi_cxx -lstdc++"
# Intel:
# USR_LFLAGS="-cxxlib"
# PGI:
# USR_LFLAGS="-pgcpplibs"
# USR_LFLAGS=" -lmpi_cxx -lstdc++"
# enable VisIt in situ
# Note: you can override the lib and include paths. VISIT_LIB and VISIT_INC
# If VISIT_STOP is set the simulation will stop after first step and wait
# for VisIt to connect.
#IFVISIT=true
#VISIT_INSTALL="/path/to/visit/current/linux-x86_64/"
#VISIT_STOP=true
###############################################################################
# DONT'T TOUCH WHAT FOLLOWS !!!
###############################################################################
# assign version tag
mver
=
1
# overwrite source path with optional 2nd argument
if
[
-d
$2
]
&&
[
$#
-eq
2
]
;
then
SOURCE_ROOT
=
"
$2
"
echo
"change source code directory to: "
,
$SOURCE_ROOT
SOURCE_ROOT_CORE
=
"
$SOURCE_ROOT
/core"
SOURCE_ROOT_JL
=
"
$SOURCE_ROOT
/jl"
SOURCE_ROOT_CMT
=
"
$SOURCE_ROOT
/core/cmt"
fi
# do some checks and create makefile
source
$SOURCE_ROOT_CORE
/makenek.inc
# compile
make
-j4
-f
makefile 2>&1 |
tee
compiler.out
exit
0
examples/template_example/Makefile
deleted
100644 → 0
View file @
7eb07262
###############################################################################
################### MOOSE Application Standard Makefile #######################
###############################################################################
#
# Optional Environment variables
# MOOSE_DIR - Root directory of the MOOSE project
# FRAMEWORK_DIR - Location of the MOOSE framework
#
###############################################################################
EXAMPLE_DIR
?=
$(
shell
dirname
`
pwd
`
)
MOON_DIR
?=
$(
shell
dirname
$(EXAMPLE_DIR)
)
MOOSE_DIR
?=
$(MOON_DIR)
/moose
FRAMEWORK_DIR
?=
$(MOOSE_DIR)
/framework
###############################################################################
# framework
include
$(FRAMEWORK_DIR)/build.mk
include
$(FRAMEWORK_DIR)/moose.mk
################################## MODULES ####################################
SOLID_MECHANICS
:=
yes
CONTACT
:=
yes
HEAT_CONDUCTION
:=
yes
WATER_STEAM_EOS
:=
yes
MISC
:=
yes
PHASE_FIELD
:=
yes
XFEM
:=
yes
include
$(MOOSE_DIR)/modules/modules.mk
###############################################################################
# nek
include
nek.mk
# moon
APPLICATION_DIR
:=
$(MOON_DIR)
APPLICATION_NAME
:=
moon
DEP_APPS
:=
$(
shell
$(FRAMEWORK_DIR)
/scripts/find_dep_apps.py
$(APPLICATION_NAME)
)
include
$(FRAMEWORK_DIR)/app.mk
# case
APPLICATION_DIR
:=
$(CURDIR)
APPLICATION_NAME
:=
$(
shell
basename
$(APPLICATION_DIR)
)
MAIN_DIR
:=
$(MOON_DIR)
/src
BUILD_EXEC
:=
yes
DEP_APPS
:=
$(
shell
$(FRAMEWORK_DIR)
/scripts/find_dep_apps.py
$(APPLICATION_NAME)
)
include
$(FRAMEWORK_DIR)/app.mk
###############################################################################
# Additional special case targets should be added here
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment