summaryrefslogtreecommitdiff
path: root/xmds2/check_perturbative_approach/Makefile
diff options
context:
space:
mode:
authorEugeniy Mikhailov <evgmik@gmail.com>2011-11-03 00:12:50 -0400
committerEugeniy Mikhailov <evgmik@gmail.com>2011-11-03 00:12:50 -0400
commit93c08cd354a9cec74456e08368e3658972c01cf9 (patch)
tree21fdccc83fc299fc9c3ac5231c5fe8fcb833bc82 /xmds2/check_perturbative_approach/Makefile
parentc0cae5de5cf5e17e689f6aba199964685ca9c0f6 (diff)
downloadNresonances-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/Makefile28
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