32 lines
713 B
Makefile
32 lines
713 B
Makefile
|
SHELL = /bin/sh
|
||
|
########################################################################################
|
||
|
# Makefile for the installation of DAMASK
|
||
|
########################################################################################
|
||
|
.PHONY : spectral
|
||
|
spectral:
|
||
|
@$(MAKE) clean -C code >/dev/null
|
||
|
$(MAKE) -C code
|
||
|
|
||
|
.PHONY : marc
|
||
|
marc:
|
||
|
@./installation/mods_Marc/apply_DAMASK_modifcation.py
|
||
|
|
||
|
.PHONY : processing
|
||
|
processing:
|
||
|
@$(MAKE) tidy -C code >/dev/null
|
||
|
@./installation/compile_CoreModule.py
|
||
|
|
||
|
.PHONY : tidy
|
||
|
tidy:
|
||
|
@$(MAKE) tidy -C code >/dev/null
|
||
|
|
||
|
.PHONY : clean
|
||
|
clean:
|
||
|
@$(MAKE) clean -C code >/dev/null
|
||
|
|
||
|
.PHONY : install
|
||
|
install:
|
||
|
@./installation/symlink_Code.py
|
||
|
@./installation/symlink_Processing.py
|
||
|
|