# $Id: Makefile.fc 14725 2007-03-22 10:21:25Z edgaras $
export CROSS

BASEDIR   = ../../

DIRS     = simple_scan continues_scan

ALL	 = $(patsubst %, subdir.%.all, $(DIRS))
CLEAN	 = $(patsubst %, subdir.%.clean, $(DIRS))

.PHONY: all clean $(ALL) $(CLEAN) $(DIRS)

all: $(ALL)

clean: $(CLEAN)

$(ALL) $(CLEAN):
	$(MAKE) -C $(patsubst subdir.%, %, $(basename $@)) $(patsubst .%, %, $(suffix $@))

$(DIRS):
	$(MAKE) -C $@

-include Makefile.copy
