DAMASK_EICMD/Makefile

33 lines
873 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
@(cd build/spectral; make --no-print-directory -ws all install;)
build/spectral: build
@mkdir build/spectral
@(cd build/spectral; cmake -Wno-dev -DDAMASK_DRIVER=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
@(cd build/FEM; cmake -Wno-dev -DDAMASK_DRIVER=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