ifeq ($(STAGING_PREFIX),)
STAGING_PREFIX:=$(shell while [ `pwd` != / -a ! -f .stagehere ]; do cd .. ; done ; if [ -x ./.stagehere ]; then ./.stagehere; fi)
endif

ifeq ($(STAGING_PREFIX),)
STAGING_PREFIX=$(HOME)/staging
endif

NOOP = @$(SHELL) -c true



all:
	$(NOOP)

install:
	mkdir -p $(STAGING_PREFIX)/usr/fb/tests/system_tests
	cp -r * $(STAGING_PREFIX)/usr/fb/tests/system_tests
clean:
	$(NOOP)


