aboutsummaryrefslogtreecommitdiff
path: root/sc4pd/build-pd-darwin.sh
blob: 38814a9a0b9b4a0854ee41b080397e054d89a822 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/sh  

SYS=pd-darwin

. config-${SYS}.txt

make -f makefile.${SYS} &&
{ 
	if [ $INSTDIR != "" ]; then
		echo Now install as root
		sudo make -f makefile.${SYS} install
	fi
	if [ $HELPDIR != "" ]; then
		echo Now install help as root
		sudo make -f makefile.${SYS} install-help
	fi
}