# Makefile to install tinyos tools

all: all-recursive

install: all install-recursive

clean: clean-recursive 

all-recursive install-recursive clean-recursive:
	target=`echo $@ | sed s/-recursive//`; \
	(cd scripts && $(MAKE) $$target); \
	(cd src && $(MAKE) $$target)

