diff options
Diffstat (limited to 'sc4pd/build-pd-cygwin.sh')
-rw-r--r-- | sc4pd/build-pd-cygwin.sh | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/sc4pd/build-pd-cygwin.sh b/sc4pd/build-pd-cygwin.sh new file mode 100644 index 0000000..9477844 --- /dev/null +++ b/sc4pd/build-pd-cygwin.sh @@ -0,0 +1,15 @@ +#!/bin/sh + +SYS=pd-cygwin + +. config-${SYS}.txt + +make -f makefile.${SYS} && +{ + if [ $INSTDIR != "" ]; then + make -f makefile.${SYS} install + fi + if [ $HELPDIR != "" ]; then + make -f makefile.${SYS} install-help + fi +} |