linux line endings
This commit is contained in:
parent
eaacde48ba
commit
3b843b1dd9
|
@ -1,32 +1,32 @@
|
||||||
SHELL = /bin/sh
|
SHELL = /bin/sh
|
||||||
########################################################################################
|
########################################################################################
|
||||||
# Makefile for the installation of DAMASK
|
# Makefile for the installation of DAMASK
|
||||||
########################################################################################
|
########################################################################################
|
||||||
.PHONY: all
|
.PHONY: all
|
||||||
all: spectral FEM
|
all: spectral FEM
|
||||||
|
|
||||||
spectral: build/spectral
|
spectral: build/spectral
|
||||||
@(cd build/spectral; make --no-print-directory -ws all install;)
|
@(cd build/spectral; make --no-print-directory -ws all install;)
|
||||||
|
|
||||||
build/spectral: build
|
build/spectral: build
|
||||||
@mkdir build/spectral
|
@mkdir build/spectral
|
||||||
@(cd build/spectral; cmake -Wno-dev -DCMAKE_BUILD_TYPE=RELEASE -DDAMASK_DRIVER=SPECTRAL -DOPTIMIZATION=AGGRESSIVE -DDAMASK_INSTALL=${HOME}/bin ../..;)
|
@(cd build/spectral; cmake -Wno-dev -DCMAKE_BUILD_TYPE=RELEASE -DDAMASK_DRIVER=SPECTRAL -DOPTIMIZATION=AGGRESSIVE -DDAMASK_INSTALL=${HOME}/bin ../..;)
|
||||||
|
|
||||||
build: bin
|
build: bin
|
||||||
@mkdir build
|
@mkdir build
|
||||||
|
|
||||||
bin:
|
bin:
|
||||||
@mkdir bin
|
@mkdir bin
|
||||||
|
|
||||||
FEM: build/FEM
|
FEM: build/FEM
|
||||||
@(cd build/FEM; make --no-print-directory -ws all install;)
|
@(cd build/FEM; make --no-print-directory -ws all install;)
|
||||||
|
|
||||||
build/FEM: build
|
build/FEM: build
|
||||||
@mkdir build
|
@mkdir build
|
||||||
@(cd build/FEM; cmake -Wno-dev -DCMAKE_BUILD_TYPE=RELEASE -DDAMASK_DRIVER=FEM ../..;)
|
@(cd build/FEM; cmake -Wno-dev -DCMAKE_BUILD_TYPE=RELEASE -DDAMASK_DRIVER=FEM ../..;)
|
||||||
|
|
||||||
.PHONY: clean
|
.PHONY: clean
|
||||||
clean:
|
clean:
|
||||||
rm -rvf build # standard build directory
|
rm -rvf build # standard build directory
|
||||||
rm -rvf testing # for testing build (testing script in PRIVATE)
|
rm -rvf testing # for testing build (testing script in PRIVATE)
|
||||||
rm -rvf bin # default binary store location
|
rm -rvf bin # default binary store location
|
||||||
|
|
Loading…
Reference in New Issue