# install samples

INSTALLHERE=/usr/local/lib/sod2-samples

SUBDIRS=bass chords drums effects guitar pad phased synth

all: install

install:
	-mkdir $(INSTALLHERE)
	chmod 755 $(INSTALLHERE)
	cp -R $(SUBDIRS) $(INSTALLHERE)
	chmod -R a+r $(INSTALLHERE)

tar:
	cd ..;tar -cvhf - sod2-samples | gzip -9 >$(HOME)/sod2-samp-new.tar.gz
