all: textures sequences
INSTALLDIR = /usr/local/blender/plugins

textures:
	cd texture; make;

sequences:
	cd sequence; make;

# This is not used by default if you want this you need to edit the
# INSTALLDIR and save this file then type make install
install:
	cd texture; make install;
	cd sequence; make install;

clean:
	cd texture; make clean;
	cd sequence; make clean;

distclean:
	cd texture; make distclean;
	cd sequence; make distclean;
