blob: 74dca08e6b41f2ebabecc6b7b3adfca7fb5dd133 [file] [log] [blame]
PROGRAM = test
SUBDIRS = test
.PHONY: subtargets $(SUBDIRS) install clean
$(PROGRAM): $(SUBDIRS)
$(SUBDIRS):
$(MAKE) -C $@
#install:
# $(MAKE) -C host.support install;
# $(MAKE) -C lib install;
clean:
@for subdir in $(SUBDIRS); do \
$(MAKE) -C $$subdir clean; \
done