vmware-svga/examples/Makefile
2009-04-13 07:05:42 +00:00

12 lines
200 B
Makefile

SUBDIRS = $(subst /Makefile,,$(wildcard */Makefile))
.PHONY: subdirs clean $(SUBDIRS)
subdirs: $(SUBDIRS)
$(SUBDIRS):
$(MAKE) -C $@
clean:
for dir in $(SUBDIRS); do $(MAKE) -C $$dir clean; done