Makefile 266 Bytes EditWeb IDE 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 # Copyright (c) 2014 Cesanta Software # All rights reserved SUBDIRS = $(sort $(filter-out csharp/, $(dir $(wildcard */)))) X = $(SUBDIRS) .PHONY: $(SUBDIRS) all: $(SUBDIRS) $(SUBDIRS): @$(MAKE) -C $@ clean: for d in $(SUBDIRS) ; do $(MAKE) -C $$d clean ; done