
# System Makefile for the spc-tools

# This makefile allows you to make and install the entire
# chipmunk utilities in one command.

PACKAGES=	\
		ss \
 		sf

clean:
	for i in $(PACKAGES) ;\
 	    do (cd $$i ; echo "Making clean in $$i..."; \
 		make  clean); done
 
install:
	for i in $(PACKAGES) ;\
	    do (cd $$i ; echo "Making install in $$i..."; \
		make install); done

 
