blob: d1d8ad1c108d975e9adef3117f393d466c9e93c8 (
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
|
### -*- make -*-
### This makefile can be used to build and run the XMDS examples
GNUPLOT_FILES = $(wildcard *.gp)
SCRIPTS_DIR = .
eps_targets = $(wildcard *.eps)
pdf_targets = $(eps_targets:%.eps=%.pdf)
png_targets = $(pdf_targets:%.pdf=%.png)
fig: pdf
pdf: $(pdf_targets)
$(pdf_targets): %.pdf : %.eps
@cat $< | ps2eps -q -B > __tt.eps
epspdf __tt.eps $@
@rm -f __tt.eps
png: pdf $(png_targets)
$(png_targets): %.png : %.pdf
convert -density 300 $< $@
clean:
rm -f *.pdf
rm -f *.eps
real_clean: clean
rm -f *.png
.PRECIOUS: %.run %.xsil %.m
.PHONY: all clean
|