1
0
mirror of git://projects.qi-hardware.com/ben-scans.git synced 2025-04-21 12:27:27 +03:00

Makefile and helper scripts for running solidify and POV-Ray.

- sfy/Makefile: shortcuts for common operations. Based on solidify/Makefile
- sfy/solidify: wrapper to invoke solidify over at cae-tools
- sfy/template.pov: standard scene template, from cae-tools/solidify
This commit is contained in:
Werner Almesberger
2010-09-27 02:46:54 -03:00
parent c00799f3c9
commit 6e287cdfb6
3 changed files with 109 additions and 0 deletions

8
sfy/solidify Executable file
View File

@@ -0,0 +1,8 @@
#!/bin/sh
if [ ! -z "$SOLIDIFY_AGAIN" ]; then
echo "$0: found only myself" 2>&1
exit 1
fi
export SOLIDIFY_AGAIN=1
PATH=../../cae-tools/solidify:$PATH
exec solidify "$@"