vmware-svga/examples/Makefile

12 lines
200 B
Makefile
Raw Normal View History

2009-04-13 02:05:42 -05:00
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