DAMASK_EICMD/Makefile

33 lines
937 B
Makefile
Raw Normal View History

2016-05-18 11:51:09 +05:30
SHELL = /bin/sh
########################################################################################
# Makefile for the installation of DAMASK
########################################################################################
.PHONY: all
all: spectral FEM
spectral: build/spectral
2016-05-21 20:21:12 +05:30
@(cd build/spectral; make --no-print-directory -ws all install VERBOSE=1;)
2016-05-18 11:51:09 +05:30
build/spectral: build
@mkdir build/spectral
2016-05-21 20:21:12 +05:30
@(cd build/spectral; cmake -Wno-dev -DCMAKE_BUILD_TYPE=RELEASE -DDAMASK_SOLVER=SPECTRAL ../..;)
2016-05-18 11:51:09 +05:30
build: bin
@mkdir build
bin:
@mkdir bin
FEM: build/FEM
@(cd build/FEM; make --no-print-directory -ws all install;)
build/FEM: build
@mkdir build
2016-05-21 20:21:12 +05:30
@(cd build/FEM; cmake -Wno-dev -DCMAKE_BUILD_TYPE=RELEASE -DDAMASK_SOLVER=FEM ../..;)
2016-05-18 11:51:09 +05:30
.PHONY: clean
clean:
rm -rvf build # standard build directory
rm -rvf testing # for testing build (testing script in PRIVATE)
rm -rvf bin # default binary store location