https://github.com/pou036/redback
Revision 42e74caaa4c6fd5d3fbfec22efa2f350fb807e15 authored by James Gilgannon on 21 June 2018, 17:46:21 UTC, committed by James Gilgannon on 21 June 2018, 17:46:21 UTC
1 parent 45ae870
Raw File
Tip revision: 42e74caaa4c6fd5d3fbfec22efa2f350fb807e15 authored by James Gilgannon on 21 June 2018, 17:46:21 UTC
chnages to theory
Tip revision: 42e74ca
Makefile
###############################################################################
################### MOOSE Application Standard Makefile #######################
###############################################################################
#
# Optional Environment variables
# MOOSE_DIR        - Root directory of the MOOSE project 
#
###############################################################################

# Use the MOOSE submodule if it exists and MOOSE_DIR is not set
MOOSE_SUBMODULE    := $(CURDIR)/moose
ifneq ($(wildcard $(MOOSE_SUBMODULE)/framework/Makefile),)
  MOOSE_DIR        ?= $(MOOSE_SUBMODULE)
else
  MOOSE_DIR        ?= $(shell dirname `pwd`)/moose
endif

# framework
FRAMEWORK_DIR      := $(MOOSE_DIR)/framework
include $(FRAMEWORK_DIR)/build.mk
include $(FRAMEWORK_DIR)/moose.mk

################################## MODULES ####################################
ALL_MODULES := no
TENSOR_MECHANICS := yes
include $(MOOSE_DIR)/modules/modules.mk
###############################################################################

# dep apps
APPLICATION_DIR    := $(CURDIR)
APPLICATION_NAME   := redback
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
back to top