blob: a89800af06bdeff052d87f79dd5367a04c392d1f (
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 = $(patsubst %.xmds,%.xsil,$(XMDS_FILES))
M_FILES = $(patsubst %.xmds,%.m,$(XMDS_FILES))
XMDS = xmds2
XSIL2GRAPHICS = xsil2graphics
all: $(M_FILES)
%.run: %.xmds
$(XMDS) $<
mv $(patsubst %.xmds,%,$<) $@
%.xsil: %.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
|