projects
/
course.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
886b802
)
Add svg output to Asymptote tests (via dvisvgm).
author
W. Trevor King
<wking@drexel.edu>
Fri, 20 May 2011 19:47:58 +0000
(15:47 -0400)
committer
W. Trevor King
<wking@drexel.edu>
Fri, 20 May 2011 19:47:58 +0000
(15:47 -0400)
asymptote/Makefile
patch
|
blob
|
history
diff --git
a/asymptote/Makefile
b/asymptote/Makefile
index a76cdb7f4bf7c3f1e306e8435efe971a9b98dda7..bd9c7da44f9b44b7c1b2d1c2a60bb7780d634c71 100644
(file)
--- a/
asymptote/Makefile
+++ b/
asymptote/Makefile
@@
-18,7
+18,9
@@
MODULES = Circ ElectroMag Mechanics stickfigure
-all : pdfs pngs
+all : svgs pdfs pngs
+
+svgs : $(MODULES:%=%-test.svg)
pdfs : $(MODULES:%=%-test.pdf)
@@
-32,6
+34,9
@@
clean :
%-view : %-test.pdf
xpdf $< &
+%-test.svg : %-test.asy $(MODULES:%=%.asy)
+ asy -f svg $<
+
%-test.pdf : %-test.asy $(MODULES:%=%.asy)
asy -f pdf $<