mirror of
git://projects.qi-hardware.com/ben-scans.git
synced 2024-11-22 07:50:19 +02:00
6e287cdfb6
- 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
9 lines
177 B
Bash
Executable File
9 lines
177 B
Bash
Executable File
#!/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 "$@"
|