2014-01-11 18:16:30 +05:30
|
|
|
SHELL = /bin/sh
|
|
|
|
########################################################################################
|
|
|
|
# Makefile for the installation of DAMASK
|
|
|
|
########################################################################################
|
|
|
|
.PHONY : spectral
|
|
|
|
spectral:
|
|
|
|
@$(MAKE) clean -C code >/dev/null
|
|
|
|
$(MAKE) -C code
|
|
|
|
|
|
|
|
.PHONY : marc
|
|
|
|
marc:
|
2014-01-18 23:30:28 +05:30
|
|
|
@./installation/mods_Marc/apply_DAMASK_modifcations.sh ${MAKEFLAGS}
|
2014-01-11 18:16:30 +05:30
|
|
|
|
|
|
|
.PHONY : processing
|
|
|
|
processing:
|
|
|
|
@$(MAKE) tidy -C code >/dev/null
|
2014-01-15 04:03:15 +05:30
|
|
|
@./installation/compile_CoreModule.py ${MAKEFLAGS}
|
2014-01-11 18:16:30 +05:30
|
|
|
|
|
|
|
.PHONY : tidy
|
|
|
|
tidy:
|
|
|
|
@$(MAKE) tidy -C code >/dev/null
|
|
|
|
|
|
|
|
.PHONY : clean
|
|
|
|
clean:
|
|
|
|
@$(MAKE) clean -C code >/dev/null
|
|
|
|
|
|
|
|
.PHONY : install
|
|
|
|
install:
|
2014-01-15 04:03:15 +05:30
|
|
|
@./installation/symlink_Code.py ${MAKEFLAGS}
|
|
|
|
@./installation/symlink_Processing.py ${MAKEFLAGS}
|
2014-01-11 18:16:30 +05:30
|
|
|
|