blob: 94778444953573d44274c8dd26d5607408d0a599 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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
}
|