diff options
author | Eugeniy Mikhailov <evgmik@gmail.com> | 2011-11-03 00:12:50 -0400 |
---|---|---|
committer | Eugeniy Mikhailov <evgmik@gmail.com> | 2011-11-03 00:12:50 -0400 |
commit | 93c08cd354a9cec74456e08368e3658972c01cf9 (patch) | |
tree | 21fdccc83fc299fc9c3ac5231c5fe8fcb833bc82 /xmds2/check_perturbative_approach/Makefile | |
parent | c0cae5de5cf5e17e689f6aba199964685ca9c0f6 (diff) | |
download | Nresonances-93c08cd354a9cec74456e08368e3658972c01cf9.tar.gz Nresonances-93c08cd354a9cec74456e08368e3658972c01cf9.zip |
draft of comparison of perturbation vs exact approach
Diffstat (limited to 'xmds2/check_perturbative_approach/Makefile')
-rw-r--r-- | xmds2/check_perturbative_approach/Makefile | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/xmds2/check_perturbative_approach/Makefile b/xmds2/check_perturbative_approach/Makefile new file mode 100644 index 0000000..79e73d2 --- /dev/null +++ b/xmds2/check_perturbative_approach/Makefile @@ -0,0 +1,28 @@ +### -*- make -*- +### This makefile can be used to build and run the XMDS examples + + +XSIL_FILES = $(shell ls *.xsil) +M_FILES = $(patsubst %.xsil,%.m,$(XSIL_FILES)) + +XSIL2GRAPHICS = xsil2graphics + +all: Nlevels_no_dopler_with_z_4wm_with_perturbations.xsil Nlevels_no_dopler_with_z_4wm.xsil $(M_FILES) + +Nlevels_no_dopler_with_z_4wm_with_perturbations.xsil: ../Nlevels_no_dopler_with_z_4wm_with_perturbations/Nlevels_no_dopler_with_z_4wm_with_perturbations.run + $< + +Nlevels_no_dopler_with_z_4wm.xsil: ../Nlevels_no_dopler_with_z_4wm/Nlevels_no_dopler_with_z_4wm.run + $< + +%.m: %.xsil + $(XSIL2GRAPHICS) $< + +plot: $(M_FILES) + octave pp.m + +clean: + rm -f $(CC_FILES) $(RUN_FILES) $(M_FILES) $(XSIL_FILES) *.wisdom.fftw3 *.dat octave-core *.wisdom *.pdf + +.PRECIOUS: %.run %.xsil %.m +.PHONY: all clean |