summaryrefslogtreecommitdiff
path: root/MOR_simple_thin_layer_model/Makefile
blob: 83877eeab6b7dcc678a059ba6aa29763f5c06f28 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
###  -*- make -*-
### This file is part of the Debian xmds package
### Copyright (C) 2006 Rafael Laboissiere
### This file is relased under the GNU General Public License
### NO WARRANTIES!

### This makefile can be used to build and run the XMDS examples

XMDS_FILES = $(shell ls *.xmds)
RUN_FILES = $(patsubst %.xmds,%.run,$(XMDS_FILES))
CC_FILES = $(patsubst %.xmds,%.cc,$(XMDS_FILES))
XSIL_FILES = delta_2photon_noise.xsil
M_FILES = $(patsubst %.xsil,%.m,$(XSIL_FILES))

XMDS = xmds2
XSIL2GRAPHICS = xsil2graphics2

all: $(M_FILES) 

%.run: %.xmds
	$(XMDS) $<
	mv $(patsubst %.xmds,%,$<) $@

$(XSIL_FILES): %.xsil: $(RUN_FILES)
	./$<

$(M_FILES): %.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