2014-08-05 23:40:51 +08:00
|
|
|
# Copyright (c) 2014 Cesanta Software
|
|
|
|
# All rights reserved
|
|
|
|
|
2016-03-09 17:59:32 +08:00
|
|
|
# `wildcard ./*/` works in both linux and linux/wine, while `wildcard */` enumerates nothing under wine
|
|
|
|
SUBDIRS = $(sort $(dir $(wildcard ./*/)))
|
2016-04-12 14:40:07 +08:00
|
|
|
SUBDIRS:=$(filter-out ./ ./CC3200/ ./ESP8266_RTOS/ ./MSP432/, $(SUBDIRS))
|
2016-03-08 19:27:34 +08:00
|
|
|
|
|
|
|
ifeq ($(OS), Windows_NT)
|
2016-03-09 17:59:32 +08:00
|
|
|
SUBDIRS:=$(filter-out ./load_balancer/ ./netcat/ ./raspberry_pi_mjpeg_led/ ./captive_dns_server/, $(SUBDIRS))
|
2016-03-08 19:27:34 +08:00
|
|
|
endif
|
2010-05-04 04:46:42 +08:00
|
|
|
|
2014-10-10 20:58:45 +08:00
|
|
|
.PHONY: $(SUBDIRS)
|
2012-09-25 04:25:06 +08:00
|
|
|
|
2014-10-10 20:58:45 +08:00
|
|
|
all: $(SUBDIRS)
|
2012-09-25 04:25:06 +08:00
|
|
|
|
2014-10-10 20:58:45 +08:00
|
|
|
$(SUBDIRS):
|
2015-09-08 19:49:03 +08:00
|
|
|
@$(MAKE) -C $@
|
2014-02-20 20:13:59 +08:00
|
|
|
|
2012-10-14 22:00:04 +08:00
|
|
|
clean:
|
2015-01-10 16:41:58 +08:00
|
|
|
for d in $(SUBDIRS) ; do $(MAKE) -C $$d clean ; done
|